/**
 * İsa Yusuf Alptekin Vakfı - Genel CSS Tasarım Sistemi
 */

:root {
    --primary: #0EA5E9; /* Doğu Türkistan Gök Mavisi */
    --primary-rgb: 14, 165, 233;
    --primary-dark: #0284C7;
    --secondary: #0F172A; /* Koyu Lacivert / Slate-900 */
    --secondary-rgb: 15, 23, 42;
    --accent: #F97316; /* Dikkat çekici Butonlar / Kampanyalar - Turuncu */
    --accent-hover: #EA580C;
    --body-bg: #F8FAFC; /* Slate-50 */
    --card-bg: #FFFFFF;
    --text-main: #334155; /* Slate-700 */
    --text-muted: #64748B; /* Slate-500 */
    --border: #E2E8F0; /* Slate-200 */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--body-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Kapsayıcı (Container) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9999px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(249, 115, 22, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* HEADER (Sticky & Glassmorphism) */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    height: 80px;
    transition: var(--transition);
}

.header-container > nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

/* Scroll durumunda header'ı küçült */
.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}
.main-header.scrolled .header-container {
    height: 65px;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.logo-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.logo-sub {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.main-header.scrolled .logo-name {
    font-size: 14px;
}

.main-header.scrolled .logo-sub {
    font-size: 11px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.header-actions .btn {
    white-space: nowrap;
}

/* Mobil Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

/* HERO SLIDER */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--secondary);
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
}

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.05); /* Arka planı koyulaştırıp kontrastı artırdık */
}

.slide-content {
    position: relative;
    z-index: 5;
    color: #fff;
    max-width: 650px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.slide-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

/* Slider Navigasyonu */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    width: 30px;
    border-radius: 9999px;
}

/* SECTION BASLIGI */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 32px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* INFO CARDS */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.info-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(14, 165, 233, 0.4);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* PROJE KARTLARI */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(14, 165, 233, 0.3);
}

.project-img-wrapper {
    position: relative;
    height: 220px;
    background-color: #e2e8f0;
}

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

.project-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.project-title {
    font-size: 19px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Bağış Progress Bar */
.donation-progress-bar {
    width: 100%;
    background-color: #f1f5f9;
    height: 8px;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 9999px;
}

.donation-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.donation-target {
    color: var(--text-muted);
}

.donation-raised {
    color: var(--primary-dark);
}

.project-card-footer {
    display: flex;
    gap: 12px;
}

.project-card-footer a {
    flex: 1;
}

/* HABER KARTLARI */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.news-img-wrapper {
    height: 200px;
    background-color: #e2e8f0;
}

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

.news-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.news-card-title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.35;
}

.news-card-title a:hover {
    color: var(--primary);
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-readmore {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-readmore:hover {
    color: var(--primary-dark);
    gap: 8px;
}

/* BIYOGRAFI BANNER (ANA SAYFA) */
.bio-banner {
    display: grid;
    grid-template-columns: 45% 55%;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bio-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    min-height: 400px;
    background-color: #1e293b;
}

.bio-banner-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-banner-title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.bio-banner-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 30px;
}

.bio-banner-quote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 16px;
    color: #e2e8f0;
}

/* PARALLAX / CATCHY QUOTE BANNER */
.quote-banner {
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85)), url('../images/quote-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.quote-text {
    font-size: 26px;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
    color: #fff;
}

.quote-author {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GALERI VE TABLAR */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    background-color: #fff;
    border: 1px solid var(--border);
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
}

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

.gallery-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.gallery-type-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-type-icon {
    opacity: 1;
}

/* IC SAYFA TASARIMI (BREADCRUMB / HERO) */
.page-hero {
    background-color: var(--secondary);
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.85)), url('../images/page-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    color: #fff;
    text-align: center;
}

.page-hero-title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    gap: 8px;
}

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

.breadcrumb-separator {
    color: rgba(255,255,255,0.4);
}

/* ZENGIN ICERIK STILI (ABOUT / BIOGRAPHY DETAY) */
.content-wrapper {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.rich-content h2 {
    font-size: 24px;
    margin: 25px 0 15px 0;
}

.rich-content h3 {
    font-size: 20px;
    margin: 20px 0 12px 0;
}

.rich-content p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.rich-content ul, .rich-content ol {
    margin-bottom: 18px;
    padding-left: 24px;
}

.rich-content li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #475569;
}

.rich-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 24px;
    background-color: #f8fafc;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
    font-style: italic;
    font-size: 16px;
}

/* ILETISIM SAYFASI VE FORMLAR */
.contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
}

.contact-info-panel {
    background-color: var(--secondary);
    color: #fff;
    border-radius: 16px;
    padding: 40px;
}

.contact-info-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    font-size: 20px;
    color: var(--primary);
    margin-top: 3px;
}

.contact-info-text h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.form-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-main);
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.alert-message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.alert-message.success {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-message.error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 400px;
}

/* FOOTER */
.main-footer {
    background-color: var(--secondary);
    color: #fff;
    padding: 60px 0 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 2.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-name {
    color: #fff;
    font-size: 15px;
}

.footer-logo .logo-sub {
    color: var(--primary);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary);
}

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

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

.footer-links.double-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
}

.footer-links.double-col li {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: inline-block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* İletişim satırları: ikon sabit kalsın, uzun metin ikonun altına kaymasın */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--primary);
    flex: 0 0 16px;
    margin-top: 4px;
    text-align: center;
}

.footer-contact-list li a,
.footer-contact-list li span {
    flex: 1;
    min-width: 0;
    display: block;
    overflow-wrap: anywhere;
}

.footer-contact-list li a:hover {
    transform: none;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 0 8px;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.footer-legal-text {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer-legal-kep {
    display: inline-block;
    margin-top: 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-legal-kep:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: #fff;
}


/* DETAY SAYFALARI (PROJE / HABER) */
.details-layout {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
}

.details-main {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.details-img-wrapper {
    height: 380px;
    background-color: #e2e8f0;
}

.details-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-body {
    padding: 40px;
}

.details-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.details-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.sidebar-title {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.donation-sidebar-stats {
    margin-bottom: 24px;
}

.donation-sidebar-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.donation-sidebar-row span:last-child {
    font-weight: 700;
    color: var(--secondary);
}

.donation-sidebar-row.highlight span:last-child {
    color: var(--primary-dark);
}

.sidebar-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

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

.sidebar-item-img {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.sidebar-item-info h4 {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 4px;
}

.sidebar-item-info span {
    font-size: 11px;
    color: var(--text-muted);
}


/* RESPONSIVE RESPONSIVENESS */
@media (max-width: 1280px) {
    .header-container {
        gap: 18px;
    }
    .nav-menu {
        gap: 16px;
    }
    .nav-link {
        font-size: 13px;
    }
    .logo a {
        font-size: 19px;
    }
    .logo-name {
        font-size: 13px;
    }
    .logo-sub {
        font-size: 11px;
    }
    .logo-img {
        height: 48px;
        max-height: 48px;
    }
    .header-actions {
        gap: 8px;
    }
    .header-actions .btn {
        padding: 8px 14px !important;
        font-size: 13px !important;
    }
    .lang-selector .lang-btn {
        padding: 8px 10px !important;
        font-size: 13px !important;
        gap: 4px !important;
    }
}

/* Menü ile butonlar yarışmaya başlamadan "Bize Ulaşın" butonunu çek */
@media (max-width: 1150px) {
    #btnHeaderContact {
        display: none;
    }
    .header-container {
        gap: 14px;
    }
    .nav-menu {
        gap: 13px;
    }
    .nav-link {
        font-size: 12.5px;
    }
    .logo-img {
        height: 44px;
        max-height: 44px;
    }
}

/* Yatay menü sığmıyor: hamburger menüye geç */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
        border-top: 1px solid var(--border);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        font-size: 15px;
    }
    .hamburger {
        display: flex;
    }
    .header-container > nav {
        flex: 0 0 auto;
    }
}

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
    }
    .projects-grid, .news-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bio-banner {
        grid-template-columns: 100%;
    }
    .contact-grid {
        grid-template-columns: 100%;
    }
    .details-layout {
        grid-template-columns: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    .main-header.scrolled .header-container {
        height: 62px;
    }
    #btnHeaderDonate {
        padding: 8px 12px !important;
        font-size: 12.5px !important;
        margin-right: 0 !important;
    }
    .slide-title {
        font-size: 32px;
    }
    .slide-desc {
        font-size: 15px;
    }
    .hero-section {
        height: 500px;
    }
    .projects-grid, .news-grid, .gallery-grid {
        grid-template-columns: 100%;
    }
    .footer-grid {
        grid-template-columns: 100%;
    }
    .bio-banner-content {
        padding: 30px;
    }
    .form-grid {
        grid-template-columns: 100%;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .content-wrapper, .details-body, .form-card {
        padding: 24px;
    }
}

/* LOGO BOYUTLANDIRMA VE GEÇİŞLERİ */
.logo-img {
    height: 55px;
    max-height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.main-header.scrolled .logo-img {
    height: 42px;
    max-height: 42px;
}

.footer-logo-img {
    height: 50px;
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* DİL SEÇİCİ VE MODÜL EK CSS STİLLERİ */
.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 6px 0;
    min-width: 90px;
    z-index: 1000;
    list-style: none;
    margin: 4px 0 0 0;
}

.lang-selector:hover .lang-dropdown,
.lang-selector.active .lang-dropdown {
    display: block !important;
}

.lang-dropdown li a:hover {
    background-color: #f8fafc;
    color: var(--primary) !important;
}

/* E-Kitap kartı stilleri */
.library-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .library-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .library-grid {
        grid-template-columns: 1fr;
    }
}

.book-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.3);
}

.book-cover {
    height: 280px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.book-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.book-title {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.book-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rapor listesi stilleri */
.report-row {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.report-row:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, 0.2);
}

.report-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.report-year {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

.report-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
}

/* Yetim Sponsorluğu Kart Stilleri */
.orphan-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.orphan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.orphan-img {
    height: 240px;
    position: relative;
    background-color: #f1f5f9;
}

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

.orphan-status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
}

.orphan-details {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.orphan-meta-info {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.orphan-desc {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.orphan-footer-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
}

.orphan-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary);
}

.orphan-price span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

/* ==========================================================================
   IHH-STYLE DONATION CENTRIC OVERHAUL ADDITIONS
   ========================================================================== */

/* Top Notice Bar */
.top-notice-bar {
    background-color: var(--secondary);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 100;
}

.tn-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tn-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tn-badge {
    background-color: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tn-right a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.tn-right a:hover {
    color: #fff;
}

/* Header Donation Link Highlight */
.nav-link.donate-nav-link {
    background-color: var(--accent) !important;
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
}

.nav-link.donate-nav-link:hover {
    background-color: var(--accent-hover) !important;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

/* Hero Section Split Layout */
.hero-container-flex {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.hero-slider-side {
    flex: 1.4;
    height: 520px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-slider-side .slider-wrapper {
    height: 100%;
}

.hero-donate-side {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

/* Quick Donate Card Styles */
.quick-donate-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    width: 100%;
    max-width: 370px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.quick-donate-card:hover {
    border-color: var(--primary);
}

.qd-header {
    background-color: var(--secondary);
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 3px solid var(--primary);
}

.qd-heart-icon {
    color: var(--accent);
    font-size: 20px;
    animation: qdHeartBeat 1.8s infinite;
}

@keyframes qdHeartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.2); }
    70% { transform: scale(1); }
}

.qd-header h3 {
    margin: 0;
    font-size: 17px;
    color: #fff;
    font-weight: 800;
}

.qd-body {
    padding: 24px;
}

.qd-form-group {
    margin-bottom: 18px;
}

.qd-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.qd-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.qd-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.qd-amount-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.qd-preset-btn {
    background-color: #f1f5f9;
    border: 1px solid var(--border);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}

.qd-preset-btn:hover {
    background-color: #e2e8f0;
}

.qd-preset-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.qd-amount-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    transition: var(--transition);
}

.qd-amount-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.qd-submit-btn {
    width: 100%;
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.qd-submit-btn:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.35);
}

/* Support Pillars styles */
.support-pillars {
    margin-top: -80px;
    position: relative;
    z-index: 30;
    margin-bottom: 40px;
}

.pillars-grid {
    display: grid;
    gap: 24px;
}

.pillars-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pillars-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pillars-grid.columns-1 {
    grid-template-columns: repeat(1, 1fr);
}

.pillar-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
    border-color: var(--primary);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--primary);
    color: #fff;
}

.pillar-card.accent-pillar .pillar-icon {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
}

.pillar-card.accent-pillar:hover .pillar-icon {
    background-color: var(--accent);
    color: #fff;
}

.pillar-card h3 {
    font-size: 19px;
    margin-bottom: 14px;
    color: var(--secondary);
    font-weight: 800;
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pillar-btn {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.pillar-card:hover .pillar-btn {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.pillar-card.accent-pillar .pillar-btn {
    color: var(--accent);
}

.pillar-card.accent-pillar:hover .pillar-btn {
    color: var(--accent-hover);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hero-container-flex {
        flex-direction: column;
        height: auto !important;
        padding: 40px 0;
        gap: 30px;
    }
    .hero-slider-side, .hero-donate-side {
        width: 100%;
        flex: none !important;
        justify-content: center;
    }
    .hero-section {
        height: auto !important;
    }
    .hero-slider-side {
        height: 420px !important;
    }
    .quick-donate-card {
        max-width: 100%;
    }
    .pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .support-pillars {
        margin-top: 30px;
    }
}

/* ==========================================================================
   INTERACTIVE ORPHAN NEEDS SIMULATOR (YUSUF)
   ========================================================================== */

#homeOrphanSimulator {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.sim-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.sim-title strong {
    font-weight: 800;
}

.sim-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.sim-layout-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.sim-left-items, .sim-right-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    align-items: center;
}

.sim-item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    max-width: 200px;
    transition: var(--transition);
}

.sim-item-card:hover {
    transform: translateY(-4px);
}

.sim-item-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sim-item-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sim-item-icon-wrapper i {
    font-size: 44px;
}

.sim-item-card:hover .sim-item-icon-wrapper {
    transform: scale(1.12);
}

/* Color matching the FontAwesome icons */
.sim-item-card.food .sim-item-icon-wrapper i {
    color: #eab308;
}
.sim-item-card.toy .sim-item-icon-wrapper i {
    color: #8b5cf6;
}
.sim-item-card.stationery .sim-item-icon-wrapper i {
    color: #0284c7;
}
.sim-item-card.clothes .sim-item-icon-wrapper i {
    color: #0ea5e9;
}

.sim-item-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary);
}

.sim-item-price {
    font-size: 11px;
    font-weight: 800;
    color: #854d0e;
    background-color: #fef08a;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
}

.sim-qty-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #f8fafc;
    padding: 4px 8px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

.sim-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    user-select: none;
}

.sim-qty-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.sim-qty-val {
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary);
    min-width: 14px;
    text-align: center;
}

.sim-avatar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sim-avatar-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, rgba(14,165,233,0.01) 70%);
    border: 2px dashed rgba(14, 165, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
    transition: var(--transition);
}

.sim-avatar-img {
    width: 190px;
    height: 190px;
    object-fit: contain;
    transition: transform 0.4s ease-in-out;
}

.sim-avatar-circle:hover .sim-avatar-img {
    transform: scale(1.05) translateY(-2px);
}

.sim-total-box {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 18px;
    display: inline-block;
}

.sim-total-val {
    font-size: 18px;
    font-weight: 900;
    color: var(--secondary);
    margin-left: 4px;
}

.sim-submit-btn {
    background-color: #a3a3a3;
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: not-allowed;
    transition: var(--transition);
}

.sim-submit-btn.active {
    background-color: #737373;
    cursor: pointer;
}

.sim-submit-btn.active:hover {
    background-color: var(--secondary);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

@media (max-width: 768px) {
    .sim-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sim-left-items, .sim-right-items {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .sim-item-card {
        max-width: 45%;
    }
    .sim-avatar-circle {
        width: 190px;
        height: 190px;
    }
    .sim-avatar-img {
        width: 150px;
        height: 150px;
    }
}

/* ==========================================================================
   DONATION FORM RESPONSIVE LAYOUT
   ========================================================================== */

.donation-card-wrapper {
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    background-color: var(--card-bg);
}

.donation-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

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

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

@media (max-width: 768px) {
    .donation-card-wrapper {
        padding: 20px !important;
        border-radius: 12px !important;
    }
    
    .donation-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .donation-row-grid-2, 
    .donation-row-grid-split {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

@media (max-width: 576px) {
    .footer-links.double-col {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .logo-name {
        font-size: 12px;
        white-space: normal;
        max-width: 130px;
    }
    .logo-sub {
        font-size: 10px;
    }
    .logo a {
        gap: 7px;
    }
    .logo-img {
        height: 38px;
        max-height: 38px;
    }
    .header-container {
        gap: 10px;
    }
    .header-actions {
        gap: 6px;
    }
    #btnHeaderDonate {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }
    .lang-selector {
        margin-right: 0 !important;
    }
    .lang-selector .lang-btn {
        padding: 8px !important;
    }
}

/* ==========================================================================
   FRONTEND FORM FIELD COMPATIBILITY
   ========================================================================== */

.admin-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    text-align: left;
}

.admin-input, .admin-select, .admin-textarea {
    width: 100% !important;
    display: block !important;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-main);
    background-color: #fff;
    border: 1px solid var(--border);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-input:focus, .admin-select:focus, .admin-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.admin-textarea {
    resize: vertical;
}

/* ==========================================================================
   ORPHANS & VOLUNTEER RESPONSIVE GRIDS
   ========================================================================== */

.orphans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 1024px) {
    .orphans-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .orphans-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .checkbox-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   DONATION METHODS TABS & BANK CARDS
   ========================================================================== */

.payment-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 2px;
}

.pay-tab-btn {
    border: none;
    background: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pay-tab-btn:hover {
    color: var(--primary);
}

.pay-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.bank-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 5px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.bank-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.bank-logo-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-logo-title i {
    color: var(--primary);
}

.iban-copy-btn {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    user-select: none;
}

.iban-copy-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Form uyarı / başarı kutuları */
.form-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-alert.success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #047857;
}

.form-alert.error {
    background-color: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #b91c1c;
}

@media (max-width: 576px) {
    .payment-tabs {
        flex-direction: column;
        gap: 8px;
        border-bottom: none;
    }
    .pay-tab-btn {
        width: 100%;
        border-bottom: none;
        border-left: 3px solid transparent;
        padding: 10px 15px;
    }
    .pay-tab-btn.active {
        border-left-color: var(--primary);
        background-color: #f0f9ff;
    }
}




