:root {
    --primary: #1a6b3c;
    --primary-dark: #145530;
    --primary-light: #2d8a52;
    --accent: #27ae60;
    --text-dark: #1a2332;
    --text-muted: #6c757d;
    --bg-light: #f8faf9;
    --white: #ffffff;
    --border: #e0ebe5;
    --shadow: 0 4px 20px rgba(26,107,60,0.10);
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── TEMEL MOBİL UYUMLULUK ── */
html {
    -webkit-text-size-adjust: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden; /* Yatay kaymayı engelle */
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── NAVBAR ── */
.navbar-main {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

    .navbar-brand .brand-logo {
        width: 42px;
        height: 42px;
        background: var(--primary);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
    }

    .navbar-brand .brand-text strong {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
    }

    .navbar-brand .brand-text span {
        font-size: 11px;
        color: var(--text-muted);
        letter-spacing: 0.3px;
    }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

    .navbar-nav a {
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
        transition: all 0.2s;
        white-space: nowrap;
    }

        .navbar-nav a:hover, .navbar-nav a.active {
            background: rgba(26,107,60,0.08);
            color: var(--primary);
        }

        .navbar-nav a.active {
            font-weight: 600;
        }

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 22px;
    margin-left: auto;
}

/* ── HERO ── */
.hero-section {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20,85,48,0.72) 0%, rgba(26,107,60,0.60) 50%, rgba(34,139,78,0.55) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,85,48,0.55) 0%, rgba(20,85,48,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    width: 100%;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(28px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 950px;
}

    .hero-title .highlight {
        color: #7deba5;
    }

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: -8px;
}

/* ── BUTONLAR ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

    .btn-primary:hover {
        background: #e8f5ee;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        color: var(--primary);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.15);
        border-color: white;
        color: white;
        transform: translateY(-2px);
    }

.btn-green {
    background: var(--primary);
    color: white;
}

    .btn-green:hover {
        background: var(--primary-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.btn-green-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .btn-green-outline:hover {
        background: var(--primary);
        color: white;
    }

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

    .btn-danger:hover {
        background: #bb2d3b;
        color: white;
    }

/* ── İSTATİSTİKLER ── */
.stats-section {
    background: var(--white);
    margin-top: 32px;
    position: relative;
    z-index: 3;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(26,107,60,0.12);
    overflow: hidden;
}

.stat-item {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid var(--border);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(26,107,60,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
}

.stat-info .stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-info .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── GENEL LAYOUT ── */
.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--bg-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-left: 16px;
}

    .section-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 4px;
        bottom: 4px;
        width: 4px;
        background: var(--primary);
        border-radius: 2px;
    }

.section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
    white-space: nowrap;
}

    .section-link:hover {
        gap: 8px;
    }

/* ── KARTLAR ── */
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    .card-link:hover .card {
        box-shadow: 0 8px 32px rgba(26,107,60,0.15);
        transform: translateY(-4px);
    }

.event-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    .event-link:hover .event-item {
        box-shadow: 0 6px 24px rgba(26,107,60,0.12);
        transform: translateX(4px);
    }

    .card:hover {
        box-shadow: 0 8px 32px rgba(26,107,60,0.15);
        transform: translateY(-4px);
    }

.card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: var(--bg-light);
}

.card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #e8f5ee, #c8e6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 48px;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-light);
    flex-wrap: wrap;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── ETKİNLİKLER ── */
.event-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.2s;
    margin-bottom: 16px;
}

    .event-item:hover {
        box-shadow: 0 6px 24px rgba(26,107,60,0.12);
        transform: translateX(4px);
    }

.event-date-box {
    width: 56px;
    height: 64px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

    .event-date-box .day {
        font-size: 22px;
        font-weight: 800;
        line-height: 1;
    }

    .event-date-box .month {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.event-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

    .event-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, #de811b, var(--primary));
    padding: 64px 0;
}

.cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
    background: #0f2318;
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 260px 1fr 220px 200px;
    gap: 48px;
}

.footer-brand .brand-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.footer-brand .brand-name strong {
    color: white;
    font-size: 16px;
    line-height: 1.2;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

    .social-links a {
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.7);
        font-size: 16px;
        transition: all 0.2s;
    }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

.footer-col h4 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 28px;
        height: 2px;
        background: var(--primary);
        border-radius: 1px;
    }

.partners-grid-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.partner-item-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    transition: all 0.2s;
}

    .partner-item-footer:hover {
        background: rgba(255,255,255,0.15);
    }

.partner-logo-footer {
    width: 80px;
    height: 56px;
    object-fit: contain;
    opacity: 0.9;
}

.partner-name-footer {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    line-height: 1.3;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    align-items: flex-start;
}

    .footer-contact-item i {
        color: #4ade80;
        flex-shrink: 0;
        margin-top: 2px;
    }

.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ── FOOTER CREDIT ── */
.footer-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

    .footer-credit a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        opacity: 0.5;
        transition: opacity 0.25s ease, transform 0.25s ease;
        text-decoration: none;
    }

        .footer-credit a:hover {
            opacity: 1;
            transform: scale(1.05);
        }

    .footer-credit img {
        height: 22px;
        width: auto;
        object-fit: contain;
        display: block;
    }

    .footer-credit span {
        display: block;
        text-align: center;
        font-size: 10px;
        color: rgba(255,255,255,0.4);
        letter-spacing: 0.5px;
        line-height: 1;
    }

/* ── SAYFA BAŞLIĞI ── */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-header h1 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

    .breadcrumb li::after {
        content: '/';
        margin-left: 8px;
        opacity: 0.5;
    }

    .breadcrumb li:last-child::after {
        display: none;
    }

    .breadcrumb a {
        color: rgba(255,255,255,0.85);
    }

/* ── FORM ── */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
    /* Mobilde zoom'u engelle */
    font-size: max(16px, 15px);
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

    .form-check input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: var(--primary);
        cursor: pointer;
    }

select.form-control {
    appearance: auto;
}

/* ── POLİTİKA DOC ── */
.policy-doc-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
    margin-bottom: 16px;
}

    .policy-doc-card:hover {
        box-shadow: 0 8px 32px rgba(26,107,60,0.12);
        transform: translateX(4px);
    }

.policy-doc-icon {
    width: 56px;
    height: 56px;
    background: rgba(220,38,38,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 26px;
    flex-shrink: 0;
}

.policy-doc-info {
    flex: 1;
    min-width: 0; /* Taşmayı engelle */
}

    .policy-doc-info h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .policy-doc-info p {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 8px;
    }

.policy-doc-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* ── BLOG ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

    .blog-card:hover {
        box-shadow: 0 8px 32px rgba(26,107,60,0.15);
        transform: translateY(-4px);
    }

    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.blog-card-body {
    padding: 20px;
}

.blog-tag {
    background: rgba(26,107,60,0.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-dark);
}

    .blog-card-title a {
        color: inherit;
    }

        .blog-card-title a:hover {
            color: var(--primary);
        }

.blog-card-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
    flex-wrap: wrap;
}

/* ── EKİP ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s;
}

    .team-card:hover {
        box-shadow: 0 8px 32px rgba(26,107,60,0.15);
        transform: translateY(-4px);
    }

.team-card-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
}

.team-card-photo-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
}

.team-card-body {
    padding: 20px;
}

.team-card-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card-title-text {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .team-social a {
        width: 32px;
        height: 32px;
        background: rgba(26,107,60,0.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 14px;
        transition: all 0.2s;
    }

        .team-social a:hover {
            background: var(--primary);
            color: white;
        }

/* ── HAKKIMIZDA ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

    .about-img-wrapper img {
        width: 100%;
        border-radius: 20px;
    }

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(26,107,60,0.3);
}

    .about-badge .big-number {
        font-size: 36px;
        font-weight: 800;
        display: block;
        line-height: 1;
    }

    .about-badge .label {
        font-size: 13px;
        opacity: 0.85;
    }

.about-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 16px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-value-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-value-icon {
    width: 40px;
    height: 40px;
    background: rgba(26,107,60,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.about-value-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.about-value-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ── İLETİŞİM ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
}

.contact-info-card {
    padding: 32px;
    background: var(--primary);
    border-radius: var(--radius);
    color: white;
    height: fit-content;
}

    .contact-info-card h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .contact-info-card p {
        opacity: 0.85;
        margin-bottom: 28px;
        font-size: 15px;
    }

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-detail-text strong {
    display: block;
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.contact-detail-text span {
    font-size: 15px;
}

.contact-form-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── GÖNÜLLÜ ── */
.volunteer-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    text-align: center;
}

    .volunteer-hero h1 {
        font-size: clamp(28px, 5vw, 40px);
        font-weight: 800;
        color: white;
        margin-bottom: 16px;
    }

    .volunteer-hero p {
        font-size: 18px;
        color: rgba(255,255,255,0.85);
        max-width: 560px;
        margin: 0 auto 32px;
        padding: 0 16px;
    }

.volunteer-form-section {
    padding: 72px 0;
}

.volunteer-form-card {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

/* ── ALERT ── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* ── BADGE ── */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger  { background: #fee2e2; color: #991b1b; }
.badge-secondary { background: #f3f4f6; color: #6b7280; }
.badge-primary { background: rgba(26,107,60,0.1); color: var(--primary); }

/* ── YARDIMCI SINIFLAR ── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary) !important; }
.fw-bold { font-weight: 700; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 24px; }
.mt-3 { margin-top: 16px; }
.d-flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }

/* ── ZİYARET SLIDER ── */
.visit-slider {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.13);
    background: #111;
}

.visit-slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.visit-slide {
    min-width: 100%;
    position: relative;
    height: 200px;
    display: block;
    text-decoration: none;
    overflow: hidden;
    background: linear-gradient(135deg,#1a3a2a,#2d5a3d);
    flex-shrink: 0;
}

    .visit-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .visit-slide:hover img {
        transform: scale(1.04);
    }

.visit-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.35);
    font-size: 36px;
}

.visit-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.78));
    color: white;
    padding: 28px 12px 10px;
}

.visit-slide-date {
    font-size: 10px;
    opacity: .7;
    margin-bottom: 3px;
    font-weight: 500;
    letter-spacing: .3px;
}

.visit-slide-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.visit-slide-inst {
    font-size: 11px;
    opacity: .75;
    margin-top: 2px;
}

.visit-slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.visit-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .3s, transform .3s;
}

    .visit-dot.active {
        background: white;
        transform: scale(1.35);
    }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBİL (≤ 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Navbar */
    .navbar-inner {
        padding: 0 16px;
        gap: 0;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        z-index: 999;
    }

        .navbar-nav.open {
            display: flex;
        }

        .navbar-nav a {
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 15px;
        }

    .navbar-toggle {
        display: flex;
    }

    /* Hero */
    .hero-content {
        padding: 32px 16px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Stats */
    .stats-section {
        margin-top: 16px;
    }

    .stats-inner {
        padding: 0 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }

    .stat-item {
        padding: 20px 16px;
    }

    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Section */
    .section {
        padding: 48px 0;
    }

    /* Kartlar */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Etkinlikler */
    .event-item {
        flex-direction: row;
        gap: 14px;
        padding: 16px;
    }

    .event-item:hover {
        transform: none; /* Mobilde hover kayması kaldırıldı */
    }

    /* Ekip */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-card-photo,
    .team-card-photo-placeholder {
        height: 180px;
    }

    /* Hakkımızda */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-badge {
        bottom: 16px;
        right: 16px;
        padding: 14px 18px;
    }

    .about-badge .big-number {
        font-size: 28px;
    }

    /* İletişim */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-card {
        padding: 24px 16px;
    }

    /* CTA */
    .cta-section {
        padding: 48px 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 16px;
        gap: 24px;
    }

    .cta-text h2 {
        font-size: 22px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }

    .partners-grid-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 16px;
        margin-top: 32px;
    }

    /* Politika */
    .policy-doc-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .policy-doc-card:hover {
        transform: none;
    }

    /* Gönüllü */
    .volunteer-form-card {
        padding: 24px 16px;
        margin: 0 16px;
    }

    .volunteer-form-section {
        padding: 40px 0;
    }

    /* Sayfa başlığı */
    .page-header {
        padding: 40px 0;
    }

    /* Section header */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ════════════════════════════════════════
   RESPONSIVE — KÜÇÜK MOBİL (≤ 480px)
════════════════════════════════════════ */
@media (max-width: 480px) {

    /* Stats tek kolon */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none !important;
        border-top: 1px solid var(--border);
    }

    .stat-item:first-child {
        border-top: none;
    }

    /* Ekip tek kolon */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Hakkımızda değerler tek kolon */
    .about-values {
        grid-template-columns: 1fr;
    }

    /* Navbar brand metin küçültme */
    .navbar-brand .brand-text strong {
        font-size: 12px;
    }

    .navbar-brand .brand-text span {
        display: none;
    }

    /* Butonlar */
    .btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    /* Footer partners tek kolon */
    .partners-grid-footer {
        grid-template-columns: 1fr;
    }

    /* Event item daha kompakt */
    .event-date-box {
        width: 48px;
        height: 56px;
    }

    .event-date-box .day {
        font-size: 18px;
    }

    /* Section title küçültme */
    .section-title {
        font-size: 22px;
    }

    /* CTA metin */
    .cta-text h2 {
        font-size: 20px;
    }
}
/* ── Ana Sayfa 3'lü Grid ── */
.home-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .home-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .home-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .home-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    .home-grid > div:last-child {
        grid-column: auto;
    }
}

/* ── DETAY SAYFALARI MEDYA GRIDLERİ ── */
.project-hero-image {
    margin-bottom: 28px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

    .project-hero-image img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

    .media-gallery img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .media-gallery img:hover {
        transform: scale(1.05);
    }

.media-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

    .media-video-grid video {
        width: 100%;
        max-height: 200px;
        object-fit: cover;
        border-radius: 8px;
    }

@media (max-width: 768px) {
    .media-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 8px;
    }

    .media-video-grid {
        grid-template-columns: 1fr;
    }

        .media-video-grid video {
            max-height: 180px;
        }

    .project-hero-image img {
        aspect-ratio: 4/3;
    }
}

/* ── DETAY SAYFASI HERO GÖRSELİ ── */
.detail-hero-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

    .detail-hero-image img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

.detail-hero-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 30px;
    color: white;
}

    .detail-hero-title h1 {
        font-size: 28px;
        font-weight: 700;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

.detail-content {
    font-size: 16px;
    line-height: 1.9;
    color: #374151;
}

    .detail-content p {
        margin-bottom: 20px;
    }

    .detail-content p:last-child {
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .detail-hero-image {
        margin: 0 auto 30px;
    }

    .detail-hero-title {
        padding: 30px 20px 20px;
    }

        .detail-hero-title h1 {
            font-size: 24px;
        }
}