/* ============================================================
   ULUSLARARASI DÜNYA TURU İNSANİ YARDIM DERNEĞİ
   Ana Stil Dosyası
   Logodan alınan renkler kullanıldı
   ============================================================ */

/* ---------- CSS Değişkenleri (Logo Renkleri) ---------- */
:root {
    --teal: #2BA8A5;
    --teal-dark: #1F8784;
    --teal-light: #E8F6F5;
    --red: #E63946;
    --red-dark: #C42B36;
    --orange: #F4A340;
    --green: #7BB661;
    --gray-900: #1A1A1A;
    --gray-700: #4A4A4A;
    --gray-500: #888888;
    --gray-300: #DDDDDD;
    --gray-100: #F5F7F8;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

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

a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }

h1,h2,h3,h4,h5,h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Üst Bilgi Çubuğu ---------- */
.top-bar {
    background: var(--teal-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a { color: var(--white); margin-right: 20px; }
.top-bar a:hover { color: var(--orange); }
.top-bar i { margin-right: 6px; }

.top-bar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    margin-right: 6px;
}
.top-bar-right a:hover { background: var(--orange); }
.top-bar-right i { margin: 0; }

/* ---------- Ana Header ---------- */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: var(--gray-900);
    font-weight: 600;
    border-radius: 8px;
    position: relative;
    font-size: 15px;
}

.nav-menu > li > a:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.nav-menu .has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    min-width: 220px;
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-top: 3px solid var(--teal);
}

.dropdown-wide { min-width: 280px; }

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 14px;
    color: var(--gray-700);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.dropdown li a:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.btn-donate {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,57,70,0.4);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    padding: 80px 30px 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li a {
    display: block;
    padding: 14px 0;
    color: var(--gray-900);
    font-weight: 600;
    border-bottom: 1px solid var(--gray-300);
    font-size: 16px;
}

.mobile-donate {
    background: var(--red);
    color: var(--white) !important;
    text-align: center;
    border-radius: 50px;
    margin-top: 20px;
    border-bottom: 0 !important;
}

/* ---------- Hero Bölümü ---------- */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(244,163,64,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(230,57,70,0.15) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(230,57,70,0.4);
}

.btn-primary:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--teal-dark);
}

.btn-secondary {
    background: var(--teal);
    color: var(--white);
}

.btn-secondary:hover { background: var(--teal-dark); color: var(--white); }

/* ---------- İstatistik Bölümü ---------- */
.stats-section {
    padding: 30px 0 60px;
    background: var(--gray-100);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--gray-300);
}

.stat-item:last-child { border-right: 0; }

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.stat-item:nth-child(2) .stat-icon { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.stat-item:nth-child(3) .stat-icon { background: linear-gradient(135deg, var(--orange), #E08A20); }
.stat-item:nth-child(4) .stat-icon { background: linear-gradient(135deg, var(--green), #5E9849); }

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-label {
    color: var(--gray-500);
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

/* ---------- Bölüm Başlıkları ---------- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--red));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray-700);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 16px;
}

/* ---------- Projeler Grid ---------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-light), var(--gray-100));
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 60px;
}

.project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.project-title a { color: inherit; }
.project-title a:hover { color: var(--teal-dark); }

.project-description {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.6;
}

.project-progress {
    margin-bottom: 16px;
}

.progress-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-500);
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

.project-amount {
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 15px;
}

.btn-card {
    background: var(--teal);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-card:hover {
    background: var(--red);
    color: var(--white);
}

/* ---------- Misyon Bölümü ---------- */
.mission-section {
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--teal);
}

.mission-card:nth-child(2) { border-top-color: var(--red); }
.mission-card:nth-child(3) { border-top-color: var(--orange); }
.mission-card:nth-child(4) { border-top-color: var(--green); }

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--teal-light);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 32px;
}

.mission-card:nth-child(2) .mission-icon { background: rgba(230,57,70,0.1); color: var(--red); }
.mission-card:nth-child(3) .mission-icon { background: rgba(244,163,64,0.1); color: var(--orange); }
.mission-card:nth-child(4) .mission-icon { background: rgba(123,182,97,0.1); color: var(--green); }

.mission-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--gray-700);
    font-size: 14px;
}

/* ---------- CTA Bölümü ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M50 0L100 50L50 100L0 50Z'/%3E%3C/svg%3E");
    background-size: 80px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* ---------- Haberler ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--teal-light), var(--gray-100));
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 50px;
}

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--white);
    color: var(--gray-900);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.news-content {
    padding: 24px;
}

.news-category {
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a { color: var(--gray-900); }
.news-title a:hover { color: var(--teal-dark); }

.news-excerpt {
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 16px;
}

.news-read-more {
    color: var(--teal);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-read-more:hover { gap: 12px; }

/* ---------- Yorumlar / Testimonials ---------- */
.testimonials-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--teal-light) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 80px;
    color: var(--teal-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-comment {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray-500);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    margin-top: 0;
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
    background: var(--white);
    padding: 10px;
    border-radius: 12px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--gray-300);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-about p {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--gray-300);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
    padding-left: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-300);
    font-size: 14px;
}

.contact-list i {
    color: var(--orange);
    margin-top: 4px;
}

.footer-bottom {
    background: rgba(0,0,0,0.4);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* ---------- Sabit Butonlar (sağ alt köşe sırası: bağış → whatsapp → yukarı) ---------- */
/* Sabit Butonlar - Sağ alt köşe sırası:
   En alt: WhatsApp (24px)
   Orta:   Online Bağış (95px)
   En üst: Yukarı Çık (170px)
*/
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    z-index: 998;
    animation: pulse 2s infinite;
    transition: transform .2s;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 35px rgba(37,211,102,0.7); }
}

.whatsapp-float:hover { color: var(--white); transform: scale(1.1); }

.back-to-top {
    position: fixed;
    bottom: 170px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    border: 0;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 997;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover { background: var(--teal-dark); }

/* ============================================================
   ONLINE BAĞIŞ - SABİT BUTON + KONUŞMA BALONU
   ============================================================ */
.online-donate-wrap {
    position: fixed;
    bottom: 95px;       /* WhatsApp butonunun (24+56+15) hemen üstünde */
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse;  /* Balon solda, buton sağda */
}

/* ----- ANA YUVARLAK BUTON ----- */
.online-donate-btn {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #E63946 0%, #c52836 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(230,57,70,0.5);
    transition: all .3s;
    flex-shrink: 0;
    overflow: visible;
    animation: donateBtnBounce 2.4s ease-in-out infinite;
}
.online-donate-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(230,57,70,0.7);
    color: #fff;
}
.online-donate-btn:active {
    transform: scale(0.96);
}

/* Hafif zıplama animasyonu - dikkat çekici */
@keyframes donateBtnBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Kredi kartı + kalp ikonu kombinasyonu */
.odb-icon-stack {
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 2;
}
.odb-card {
    font-size: 26px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.odb-heart {
    font-size: 14px;
    color: #fff;
    position: absolute;
    bottom: -6px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700, #f4a340);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(244,163,64,0.5);
    animation: heartPulse 1.3s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* Halka dalgaları */
.odb-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    border: 2.5px solid rgba(230,57,70,0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: odbRipple 2s ease-out infinite;
    opacity: 0;
    pointer-events: none;
}
.odb-ripple-2 { animation-delay: 1s; }

@keyframes odbRipple {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.7);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

/* ----- KONUŞMA BALONU ----- */
.donate-bubble {
    background: #fff;
    color: #1f2937;
    padding: 14px 40px 14px 18px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    text-decoration: none;
    position: relative;
    max-width: 240px;
    transform: translateX(20px) scale(0.85);
    opacity: 0;
    visibility: hidden;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    cursor: pointer;
    border: 1px solid #f0f0f0;
}
.donate-bubble.show {
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Balon kuyruğu - sağa doğru üçgen */
.donate-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 9px solid #fff;
    filter: drop-shadow(2px 0 1px rgba(0,0,0,0.05));
}

.donate-bubble-content {
    display: block;
}
.donate-bubble-content strong {
    display: block;
    font-size: 14px;
    color: #1f2937;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3px;
}
.donate-bubble-content small {
    font-size: 12px;
    color: #6b7280;
    display: block;
}

.donate-bubble:hover {
    box-shadow: 0 14px 36px rgba(230,57,70,0.25);
    transform: translateX(0) scale(1.03);
}

.donate-bubble-close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 10px;
    cursor: pointer;
    transition: all .2s;
}
.donate-bubble-close:hover {
    background: #E63946;
    color: #fff;
    transform: scale(1.1);
}

/* ----- MOBİL ----- */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .back-to-top {
        bottom: 150px;
        right: 23px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
    .online-donate-wrap {
        bottom: 85px;
        right: 20px;
    }
    .online-donate-btn {
        width: 56px;
        height: 56px;
    }
    .odb-card { font-size: 22px; }
    .odb-heart { width: 18px; height: 18px; font-size: 11px; }
    .odb-ripple { width: 56px; height: 56px; }
    .donate-bubble {
        padding: 12px 32px 12px 14px;
        max-width: 200px;
    }
    .donate-bubble-content strong { font-size: 13px; }
    .donate-bubble-content small { font-size: 11px; }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .back-to-top {
        bottom: 135px;
        right: 19px;
    }
    .online-donate-wrap {
        bottom: 76px;
        right: 16px;
    }
    .online-donate-btn {
        width: 52px;
        height: 52px;
    }
    .odb-card { font-size: 20px; }
    .odb-ripple { width: 52px; height: 52px; }
    .donate-bubble {
        max-width: 170px;
        padding: 10px 28px 10px 12px;
    }
    .donate-bubble-content strong { font-size: 12.5px; }
    .donate-bubble-content small { font-size: 10.5px; }
}

/* ---------- Sayfa İçi (Inner Pages) ---------- */
.page-banner {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M30 0L60 30L30 60L0 30Z'/%3E%3C/svg%3E");
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--orange); }

.page-content {
    padding: 60px 0;
}

.page-content h2, .page-content h3 {
    margin: 24px 0 12px;
}

.page-content p { margin-bottom: 16px; line-height: 1.8; }

/* ---------- Bağış Formu ---------- */
.donation-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(43,168,165,0.1);
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.amount-btn {
    padding: 14px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    font-family: inherit;
    font-size: 15px;
}

.amount-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.amount-btn.active {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.form-check input { width: 18px; height: 18px; cursor: pointer; }
.form-check label { cursor: pointer; font-size: 14px; }

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    border: 0;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.4);
}

.btn-submit:disabled {
    background: var(--gray-500);
    cursor: not-allowed;
    transform: none;
}

.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.alert-danger { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }
.alert-info { background: #D1ECF1; color: #0C5460; border: 1px solid #BEE5EB; }

/* ---------- Hesap Numaraları ---------- */
.bank-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border-left: 4px solid var(--teal);
}

.bank-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.bank-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 24px;
    flex-shrink: 0;
}

.bank-info {
    flex: 1;
}

.bank-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.bank-iban {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    color: var(--gray-700);
}

.copy-btn {
    background: var(--teal);
    color: var(--white);
    border: 0;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    font-family: inherit;
}

.copy-btn:hover { background: var(--teal-dark); }
.copy-btn.copied { background: var(--green); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .btn-donate { padding: 10px 18px; font-size: 14px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: 0; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { font-size: 12px; }
    .top-bar a { margin-right: 10px; }
    .logo img { height: 55px; }
    .hero { min-height: 500px; padding: 40px 0; }
    .section { padding: 50px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .contact-list li { justify-content: center; }
    .stats-grid { padding: 25px; }
    .donation-form-wrapper { padding: 25px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .top-bar .container { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Animasyonlar ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }

/* Loader */
.loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   GALERİ SAYFASI STİLLERİ
   ============================================================ */
.gallery-albums {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}
.album-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    text-decoration: none;
    color: inherit;
    transition: all .3s;
    display: block;
}
.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.album-cover {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #2BA8A5, #7BB661);
}
.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.album-card:hover .album-cover img {
    transform: scale(1.08);
}
.album-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 64px;
}
.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    padding: 30px 15px 15px;
}
.album-count {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    background: rgba(0,0,0,.4);
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
}
.album-info {
    padding: 20px;
}
.album-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}
.album-info p {
    color: #666;
    font-size: 14px;
    margin: 0 0 12px;
    line-height: 1.5;
}
.album-project {
    display: inline-block;
    background: rgba(43, 168, 165, .1);
    color: #2BA8A5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}
.album-cta {
    color: #E63946;
    font-weight: 600;
    font-size: 14px;
    transition: gap .2s;
}
.album-card:hover .album-cta {
    color: #c52836;
}
.album-cta i {
    margin-left: 6px;
    transition: margin .3s;
}
.album-card:hover .album-cta i {
    margin-left: 12px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}
.empty-state h3 {
    color: #666;
    margin-top: 20px;
    font-weight: 600;
}
.empty-state p {
    color: #999;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .gallery-albums {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ============================================================
   YENİ ANA SAYFA BÖLÜMLERİ
   ============================================================ */

/* NASIL BAĞIŞ YAPILIR - 3 ADIM */
.how-it-works {
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}
.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    position: relative;
    transition: transform .3s;
    border: 1px solid #f0f0f0;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(43,168,165,.15);
}
.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2BA8A5, #7BB661);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(43,168,165,.4);
}
.step-icon {
    width: 80px;
    height: 80px;
    margin: 15px auto 20px;
    background: rgba(43,168,165,.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2BA8A5;
    font-size: 32px;
}
.step-card h3 {
    font-size: 20px;
    margin: 0 0 12px;
    color: #222;
}
.step-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}
.step-arrow {
    display: flex;
    align-items: center;
    color: #d1d5db;
    font-size: 24px;
}

/* BAĞIŞINIZ NEREYE GİDİYOR - INFOGRAPHIC */
.impact-section {
    background: #fff;
}
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.impact-pie {
    display: flex;
    justify-content: center;
}
.pie-chart {
    width: 100%;
    max-width: 320px;
    height: auto;
}
.impact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.impact-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: .2s;
}
.impact-row:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}
.impact-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.impact-info strong {
    display: block;
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
}
.impact-info p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.55;
}

/* GÜVEN ŞERİDİ */
.trust-strip {
    background: linear-gradient(135deg, #2BA8A5, #7BB661);
    padding: 35px 0;
    color: #fff;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
}
.trust-item i {
    font-size: 28px;
    flex-shrink: 0;
    opacity: .95;
}
.trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}
.trust-item span {
    font-size: 12px;
    opacity: .85;
}

/* SSS BÖLÜMÜ */
.faq-section {
    background: #f8f9fa;
}
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.faq-item[open] {
    box-shadow: 0 6px 20px rgba(43,168,165,.12);
    border: 1px solid rgba(43,168,165,.2);
}
.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    user-select: none;
    transition: .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #2BA8A5; }
.faq-item summary i {
    color: #2BA8A5;
    font-size: 14px;
    transition: transform .3s;
    flex-shrink: 0;
}
.faq-item[open] summary i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 25px 22px;
    color: #555;
    line-height: 1.7;
    font-size: 14.5px;
    border-top: 1px solid #f0f0f0;
}
.faq-answer p {
    margin: 15px 0 0;
}
.faq-answer a {
    color: #2BA8A5;
    text-decoration: underline;
}

/* SON CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2BA8A5 0%, #1a8985 50%, #7BB661 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.final-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.final-cta-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.final-cta-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin: 12px 0 18px;
    line-height: 1.2;
}
.final-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.18);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.final-cta-text > p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 25px;
    opacity: .95;
}
.final-cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}
.final-cta-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.final-cta-features i {
    color: #ffd700;
    font-size: 18px;
}
.final-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-large {
    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 700;
}
.btn-whatsapp {
    background: #25d366;
    color: #fff !important;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .2s;
}
.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

.final-cta-visual {
    position: relative;
    height: 360px;
}
.floating-card {
    position: absolute;
    background: #fff;
    color: #222;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: cardFloat 3s ease-in-out infinite;
}
.floating-card i {
    width: 36px;
    height: 36px;
    background: rgba(43,168,165,.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2BA8A5;
    font-size: 16px;
}
.card-1 { top: 10%; left: 5%; animation-delay: 0s; }
.card-2 { top: 5%; right: 5%; animation-delay: 0.5s; }
.card-3 { bottom: 15%; left: 10%; animation-delay: 1s; }
.card-4 { bottom: 5%; right: 10%; animation-delay: 1.5s; }
.card-center {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    background: linear-gradient(135deg, #E63946, #c52836);
    border-radius: 50%;
    justify-content: center;
    animation: heartPulse 2s ease-in-out infinite;
}
.card-center i {
    background: transparent;
    color: #fff;
    font-size: 38px;
    width: auto;
    height: auto;
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes heartPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 10px 30px rgba(230,57,70,.4); }
    50% { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 15px 40px rgba(230,57,70,.6); }
}

/* ============================================================
   MOBİL UYUMLULUK - KUSURSUZ RESPONSIVE
   ============================================================ */

/* Tablet (max 992px) */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 15px;
    }
    .step-arrow {
        display: none;
    }
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .final-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .final-cta-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .final-cta-buttons {
        justify-content: center;
    }
}

/* Mobil (max 768px) */
@media (max-width: 768px) {
    .section { padding: 50px 0 !important; }

    /* Hero mobil */
    .hero { min-height: 420px !important; padding: 50px 0 !important; }
    .hero h1 { font-size: 30px !important; line-height: 1.25; }
    .hero p { font-size: 15px !important; }
    .hero-buttons { gap: 10px; }
    .hero .btn { padding: 13px 22px; font-size: 14px; }

    /* Stat kutuları */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 20px !important;
    }
    .stat-number { font-size: 28px !important; }
    .stat-icon { font-size: 28px; width: 50px; height: 50px; }
    .stat-label { font-size: 12px; }

    /* Section header */
    .section-title { font-size: 26px !important; }
    .section-subtitle { font-size: 14px !important; }
    .section-tag { font-size: 12px; padding: 6px 14px; }

    /* Projeler grid mobil */
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }
    .project-card { max-width: 100%; }

    /* Misyon mobil */
    .mission-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px;
    }
    .mission-card { padding: 25px 18px; }
    .mission-icon { font-size: 38px; }
    .mission-card h3 { font-size: 16px; }
    .mission-card p { font-size: 13px; }

    /* CTA section mobil */
    .cta-section { padding: 60px 0; }
    .cta-content h2 { font-size: 28px; }
    .cta-content p { font-size: 15px; }

    /* Steps mobil */
    .step-card { padding: 30px 22px; }
    .step-icon { width: 70px; height: 70px; font-size: 28px; }
    .step-card h3 { font-size: 18px; }

    /* Impact pie mobil */
    .impact-pie .pie-chart { max-width: 240px; }
    .impact-row { padding: 14px; gap: 14px; }
    .impact-info strong { font-size: 15px; }
    .impact-info p { font-size: 12.5px; }

    /* Trust strip mobil */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .trust-strip { padding: 28px 0; }
    .trust-item { gap: 10px; }
    .trust-item i { font-size: 24px; }
    .trust-item strong { font-size: 13px; }
    .trust-item span { font-size: 11px; }

    /* News mobil */
    .news-grid { grid-template-columns: 1fr !important; gap: 18px; }

    /* Yorumlar mobil */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .testimonial-card { padding: 20px; }

    /* SSS mobil */
    .faq-item summary { padding: 16px 18px; font-size: 14.5px; }
    .faq-answer { padding: 0 18px 18px; font-size: 13.5px; }

    /* Son CTA mobil */
    .final-cta { padding: 60px 0; }
    .final-cta-text h2 { font-size: 26px; }
    .final-cta-text > p { font-size: 14.5px; }
    .final-cta-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .final-cta-features div { font-size: 13.5px; justify-content: center; }
    .final-cta-buttons .btn-large {
        padding: 14px 24px !important;
        font-size: 15px !important;
    }
    .final-cta-buttons .btn-whatsapp {
        padding: 14px 24px;
        font-size: 14px;
    }
    .final-cta-visual {
        height: 280px;
        max-width: 350px;
        margin: 0 auto;
    }
    .floating-card {
        padding: 10px 14px;
        font-size: 12px;
    }
    .floating-card i {
        width: 28px; height: 28px;
        font-size: 13px;
    }
    .card-center { width: 80px; height: 80px; }
    .card-center i { font-size: 30px; }
}

/* Küçük mobil (max 480px) */
@media (max-width: 480px) {
    /* Hero küçük */
    .hero { min-height: 380px !important; padding: 40px 0 !important; }
    .hero h1 { font-size: 24px !important; }
    .hero-tag { font-size: 11px; padding: 5px 12px; }
    .hero p { font-size: 14px !important; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero .btn { width: 100%; }

    /* Stats tek sütun */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Section */
    .section { padding: 40px 0 !important; }
    .section-title { font-size: 22px !important; }
    .section-tag { font-size: 11px; }

    /* Misyon tek sütun */
    .mission-grid { grid-template-columns: 1fr !important; }

    /* Trust tek sütun */
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    .trust-item {
        background: rgba(255,255,255,.1);
        padding: 12px 14px;
        border-radius: 10px;
    }

    /* CTA küçük */
    .cta-content h2 { font-size: 24px; }
    .final-cta-text h2 { font-size: 22px; }
    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .final-cta-buttons .btn-large,
    .final-cta-buttons .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* Footer küçük */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-legal-links {
        gap: 8px;
        font-size: 11.5px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .footer-payment-icons { font-size: 18px; gap: 10px; }

    /* SSS küçük */
    .faq-item summary {
        padding: 14px 16px;
        font-size: 13.5px;
        gap: 10px;
    }
    .faq-answer { padding: 0 16px 16px; font-size: 13px; }

    /* Floating cards küçük */
    .final-cta-visual { height: 240px; }
    .floating-card { padding: 8px 12px; font-size: 11px; }
    .floating-card i { width: 24px; height: 24px; font-size: 12px; }

    /* Cookie banner küçük */
    .cookie-banner { padding: 14px 0; }
    .cookie-content strong { font-size: 13.5px; }
    .cookie-content p { font-size: 12px; }
    .cookie-btn { padding: 9px 14px; font-size: 13px; }
}

/* Çok küçük (max 360px - iPhone SE 1) */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero h1 { font-size: 22px !important; }
    .section-title { font-size: 20px !important; }
    .stats-grid { padding: 15px !important; }
}

/* MOBİL DOKUNMA HEDEFLERİ - 44px minimum (Apple/Google standartı) */
@media (max-width: 768px) {
    .btn, .btn-card, .btn-submit, .btn-primary, .btn-outline, .btn-secondary,
    .amount-btn, .cookie-btn {
        min-height: 44px;
    }
    .nav-link, .mobile-menu a, .footer-legal-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* TOUCH-FRIENDLY: hover yerine tap için */
@media (hover: none) {
    .project-card:hover,
    .mission-card:hover,
    .step-card:hover,
    .ig-post-card:hover,
    .album-card:hover {
        transform: none;
    }
}

/* SAFARI iOS overflow fix */
@supports (-webkit-touch-callout: none) {
    .hero, .cta-section, .final-cta {
        background-attachment: scroll;
    }
}

/* MOBILDE METIN SEÇIMI - daha rahat kullanım */
@media (max-width: 768px) {
    body {
        -webkit-tap-highlight-color: rgba(43,168,165,.15);
        -webkit-text-size-adjust: 100%;
    }
}

/* ============================================================
   MOBİL MENÜ GELİŞMİŞ STYLE
   ============================================================ */
.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(43,168,165,.1);
    border: none;
    border-radius: 50%;
    color: #2BA8A5;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 10;
}
.mobile-menu-close:hover {
    background: #2BA8A5;
    color: #fff;
    transform: rotate(90deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    backdrop-filter: blur(2px);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobil menü içeriği daha güzel */
.mobile-menu {
    z-index: 9999 !important;
}
.mobile-menu ul {
    margin-top: 20px;
}
.mobile-menu li a {
    transition: all .2s;
    padding: 16px 0 !important;
    position: relative;
}
.mobile-menu li a::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 70%;
    background: linear-gradient(180deg, #2BA8A5, #7BB661);
    border-radius: 0 4px 4px 0;
    transition: width .2s;
}
.mobile-menu li a:hover {
    color: #2BA8A5;
    padding-left: 12px !important;
}
.mobile-menu li a:hover::before {
    width: 4px;
}
.mobile-menu .mobile-donate {
    background: linear-gradient(135deg, #E63946, #c52836);
    color: #fff !important;
    padding: 16px !important;
    border-radius: 12px !important;
    text-align: center;
    box-shadow: 0 4px 16px rgba(230,57,70,.3);
}
.mobile-menu .mobile-donate::before { display: none; }
.mobile-menu .mobile-donate:hover {
    padding-left: 16px !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,57,70,.4);
}

/* Hamburger animasyonu */
.mobile-toggle {
    transition: all .2s;
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================================
   FOOTER CREDIT (Emixhas backlink)
   ============================================================ */
.footer-credit {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}
.footer-credit p {
    margin: 0;
    font-size: 12px;
    color: rgba(255,255,255,.55);
    letter-spacing: .3px;
}
.footer-credit a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-weight: 600;
    transition: all .2s;
    margin-left: 4px;
    background: linear-gradient(135deg, #2BA8A5, #7BB661);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-credit a:hover {
    text-decoration: underline;
    text-decoration-color: #7BB661;
    text-underline-offset: 3px;
}

/* ============================================================
   MODERN HAREKETLI YORUMLAR - MARQUEE
   ============================================================ */
.testimonials-modern-section {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    overflow: hidden;
    padding: 70px 0;
}
.testimonials-modern-section .section-tag {
    background: rgba(43,168,165,.12);
    color: #1f8784;
}
.testimonials-modern-section .section-tag i {
    color: #2BA8A5;
    margin-right: 4px;
}

.testimonial-marquee-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 12px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.testimonial-marquee {
    display: flex;
    gap: 18px;
    width: max-content;
    animation-duration: 80s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.marquee-left  { animation-name: marqueeScrollLeft; }
.marquee-right { animation-name: marqueeScrollRight; }

.testimonial-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes marqueeScrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.testimonial-card-modern {
    flex: 0 0 340px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid #f0f0f0;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    min-height: 180px;
    position: relative;
}
.testimonial-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(43,168,165,.15);
    border-color: rgba(43,168,165,.3);
}

.t-quote-icon {
    color: rgba(43,168,165,.15);
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1;
}
.t-comment {
    color: #333;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.t-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}
.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
.t-info { flex: 1; min-width: 0; }
.t-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1da1f2;
    font-size: 14px;
    line-height: 1;
    cursor: help;
}
.verified-badge i {
    filter: drop-shadow(0 1px 2px rgba(29,161,242,.3));
}
.t-type {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.t-type i {
    color: #E63946;
    font-size: 11px;
}

/* Alt istatistik mini */
.stats-mini {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    flex-wrap: wrap;
    justify-content: center;
}
.stats-mini > div {
    font-size: 13px;
    color: #666;
}
.stats-mini strong {
    color: #2BA8A5;
    font-size: 16px;
    font-weight: 700;
    margin-right: 4px;
}
.stats-mini .divider {
    width: 1px;
    height: 20px;
    background: #e5e7eb;
}

/* MOBİL */
@media (max-width: 768px) {
    .testimonial-card-modern { flex: 0 0 280px; padding: 20px 18px; min-height: 160px; }
    .t-comment { font-size: 13px; -webkit-line-clamp: 3; }
    .testimonials-modern-section { padding: 50px 0; }
    .testimonial-marquee { animation-duration: 60s; }
    .stats-mini { gap: 12px; padding: 10px 18px; }
    .stats-mini > div { font-size: 12px; }
    .stats-mini strong { font-size: 14px; }
}
@media (max-width: 480px) {
    .testimonial-card-modern { flex: 0 0 240px; padding: 16px 14px; }
    .t-avatar { width: 38px; height: 38px; font-size: 14px; }
    .stats-mini .divider { display: none; }
}

/* ============================================================
   PROJE KARTI - GELİŞMİŞ TIKLANABİLİR
   ============================================================ */
.project-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Eski uppercase badge yerine yeni şık gradient badge */
.project-badge {
    background: linear-gradient(135deg, #E63946, #c52836) !important;
    color: #fff !important;
    padding: 7px 14px !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: 0 4px 12px rgba(230,57,70,.35) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.project-badge i {
    font-size: 11px;
}

/* Öne Çıkan badge - altın gradient */
.project-card .project-badge:has(.fa-star),
.project-card .project-badge.featured-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    box-shadow: 0 4px 12px rgba(245,158,11,.4) !important;
}

/* Hover Overlay - resme tıklanabilir olduğunu gösterir */
.project-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43,168,165,.85), rgba(123,182,97,.85));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.project-hover-overlay i {
    font-size: 22px;
}
.project-card:hover .project-hover-overlay {
    opacity: 1;
}

/* Tıklanabilir görsel için cursor */
.project-image-link {
    cursor: pointer;
}

/* Açıklama tıklanabilir link */
.project-desc-link {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: color .2s;
}
.project-desc-link:hover {
    color: #2BA8A5;
}

/* Mobilde overlay'i kaldır - sadece tap çalışır */
@media (hover: none) {
    .project-hover-overlay {
        display: none;
    }
    /* Mobilde net "Detayları Gör" hissi için pulse */
    .project-card .project-image::after {
        content: '';
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2BA8A5;
        font-size: 14px;
        font-weight: 700;
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        content: '\f061';  /* arrow-right icon */
        box-shadow: 0 2px 8px rgba(0,0,0,.15);
    }
}

/* ============================================================
   PROJE HTML İÇERİĞİ (TinyMCE çıktısı)
   ============================================================ */
.project-html-content {
    color: #374151;
    line-height: 1.75;
    font-size: 15px;
}
.project-html-content h1,
.project-html-content h2,
.project-html-content h3,
.project-html-content h4 {
    color: #1f2937;
    margin: 1.4em 0 0.5em;
    font-weight: 700;
    line-height: 1.3;
}
.project-html-content h1 { font-size: 26px; }
.project-html-content h2 { font-size: 22px; color: #2BA8A5; }
.project-html-content h3 { font-size: 18px; }
.project-html-content h4 { font-size: 16px; }
.project-html-content p { margin: 0 0 1em; }
.project-html-content strong { color: #1f2937; font-weight: 700; }
.project-html-content em { font-style: italic; }
.project-html-content ul,
.project-html-content ol {
    margin: 0 0 1em;
    padding-left: 24px;
}
.project-html-content li {
    margin-bottom: 0.5em;
    padding-left: 4px;
}
.project-html-content ul li::marker { color: #2BA8A5; }
.project-html-content a {
    color: #2BA8A5;
    text-decoration: underline;
    transition: color .2s;
}
.project-html-content a:hover {
    color: #1f8784;
}
.project-html-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 12px 0;
    display: block;
}
.project-html-content blockquote {
    border-left: 4px solid #2BA8A5;
    background: #f0fdfa;
    padding: 14px 18px;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
    color: #374151;
    font-style: italic;
}
.project-html-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.project-html-content table th,
.project-html-content table td {
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
    text-align: left;
}
.project-html-content table th {
    background: #f9fafb;
    font-weight: 700;
}
.project-html-content hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 24px 0;
}
