/* ===== HERO ===== */
        .about-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 60px;
        }
        .about-hero-bg {
            position: absolute;
            inset: 0;
            background: url('../../images/brand/olive-hero.svg') center/cover no-repeat;
        }
        .about-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45,80,22,0.92) 0%, rgba(107,142,35,0.85) 50%, rgba(45,80,22,0.92) 100%);
        }
        .hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
        .hero-particle {
            position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06);
            animation: float-particle linear infinite;
        }
        @keyframes float-particle {
            0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10%  { opacity: 1; }
            90%  { opacity: 1; }
            100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
        }
        .about-hero-content {
            position: relative; z-index: 2; text-align: center; color: #fff;
            max-width: 850px; padding: 80px 20px;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 10px;
            background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
            padding: 10px 28px; border-radius: 50px; font-size: 0.9rem;
            font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
            margin-bottom: 30px; border: 1px solid rgba(255,255,255,0.15);
        }
        .hero-badge i { font-size: 14px; color: #f9d423; }
        .about-hero-content h1 {
            font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 800; line-height: 1.15; margin-bottom: 25px;
        }
        .about-hero-content h1 span {
            background: linear-gradient(90deg, #f9d423, #8fbc3f);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .about-hero-content p { font-size: 1.15rem; line-height: 1.8; opacity: 0.9; max-width: 680px; margin: 0 auto; }
        .hero-scroll-hint {
            position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); z-index: 2;
            color: rgba(255,255,255,0.5); display: flex; flex-direction: column; align-items: center;
            gap: 8px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
        }
        .hero-scroll-hint span { width: 1px; height: 40px; background: rgba(255,255,255,0.3); animation: scroll-line 2s ease-in-out infinite; }
        @keyframes scroll-line { 0%, 100% { transform: scaleY(0.4); opacity: 0.3; } 50% { transform: scaleY(1); opacity: 1; } }

        /* ===== DERNEĞİMİZ ANA BÖLÜM ===== */
        .about-main { padding: 100px 0; background: #fff; }
        .about-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

        /* Fotoğraf Galerisi */
        .about-gallery { position: relative; }
        .about-gallery-main {
            border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            aspect-ratio: 4/3; position: relative;
        }
        .about-gallery-main img {
            width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
        }
        .about-gallery-main:hover img { transform: scale(1.05); }
        .about-gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
        .about-gallery-thumb {
            border-radius: 14px; overflow: hidden; aspect-ratio: 4/3;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08); cursor: pointer; transition: all 0.3s;
            border: 3px solid transparent;
        }
        .about-gallery-thumb:hover, .about-gallery-thumb.active { border-color: var(--accent-color); transform: translateY(-3px); }
        .about-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

        .gallery-placeholder {
            width: 100%; height: 100%; display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 12px;
            background: linear-gradient(135deg, #e8f5d8, #d4ecc0); color: var(--primary-color);
        }
        .gallery-placeholder i { font-size: 48px; opacity: 0.5; }
        .gallery-placeholder span { font-size: 0.9rem; opacity: 0.6; }

        .about-gallery-badge {
            position: absolute; top: 20px; left: 20px; z-index: 3;
            background: linear-gradient(135deg, #f9d423, #e8b91f); color: var(--primary-color);
            padding: 10px 22px; border-radius: 50px; font-weight: 800; font-size: 0.85rem;
            box-shadow: 0 8px 25px rgba(249,212,35,0.4); display: flex; align-items: center; gap: 8px;
        }

        /* Metin */
        .about-text h2 {
            font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 800;
            color: var(--text-color); margin-bottom: 12px; line-height: 1.2;
        }
        .about-text h2 em { font-style: normal; color: var(--accent-color); }
        .about-date-badge {
            display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
            background: rgba(143,188,63,0.1); color: var(--secondary-color);
            font-weight: 700; font-size: 0.85rem; border-radius: 50px; margin-bottom: 28px;
        }
        .about-text-content { font-size: 1.05rem; line-height: 2; color: var(--text-light); }
        .about-text-content p { margin-bottom: 20px; }
        .about-text-content strong { color: var(--text-color); }

        /* ===== SORUNLAR & ÇÖZÜMLER ===== */
        .challenges-section { padding: 100px 0; background: linear-gradient(180deg, #fafaf5, #f2f2ea); }
        .challenges-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
        .challenge-text h2 {
            font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800;
            color: var(--text-color); margin-bottom: 24px; line-height: 1.25;
        }
        .challenge-text-content { font-size: 1.05rem; line-height: 2; color: var(--text-light); }
        .challenge-text-content p { margin-bottom: 20px; }
        .challenge-text-content strong { color: var(--text-color); }

        .challenge-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .challenge-photo {
            border-radius: 18px; overflow: hidden; box-shadow: 0 10px 35px rgba(0,0,0,0.08);
            aspect-ratio: 1; transition: all 0.4s;
        }
        .challenge-photo:first-child { grid-row: span 2; aspect-ratio: auto; }
        .challenge-photo:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
        .challenge-photo img { width: 100%; height: 100%; object-fit: cover; }

        /* ===== HİBE PROJESİ BANDI ===== */
        .project-band {
            padding: 80px 0; background: linear-gradient(135deg, var(--primary-color), #1a3a0a);
            color: #fff; position: relative; overflow: hidden;
        }
        .project-band::before {
            content: ''; position: absolute; top: -40%; right: -15%; width: 450px; height: 450px;
            border-radius: 50%; background: rgba(143,188,63,0.06);
        }
        .project-inner {
            position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center;
        }
        .project-badge {
            display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
            background: rgba(249,212,35,0.15); color: #f9d423; border-radius: 50px;
            font-weight: 700; font-size: 0.85rem; margin-bottom: 24px;
        }
        .project-inner h3 {
            font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; margin-bottom: 20px;
        }
        .project-inner p { font-size: 1.1rem; line-height: 1.9; opacity: 0.9; margin-bottom: 16px; }
        .project-features {
            display: flex; justify-content: center; gap: 40px; margin-top: 35px; flex-wrap: wrap;
        }
        .project-feat {
            display: flex; align-items: center; gap: 12px; padding: 14px 26px;
            background: rgba(255,255,255,0.08); border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px);
        }
        .project-feat i { font-size: 22px; color: var(--accent-color); }
        .project-feat span { font-weight: 600; font-size: 0.95rem; }

        /* ===== MİSYON VİZYON ===== */
        .mv-section { padding: 100px 0; background: #fff; position: relative; }
        .mv-section::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color), #f9d423, var(--accent-color), var(--primary-color));
        }
        .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
        .mv-card {
            position: relative; padding: 55px 45px; border-radius: 24px; overflow: hidden;
            transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease;
        }
        .mv-card:hover { transform: translateY(-10px); }
        .mv-card--misyon { background: linear-gradient(160deg, #f0f7e8, #e8f5d8); border: 2px solid rgba(143,188,63,0.15); }
        .mv-card--misyon:hover { box-shadow: 0 25px 60px rgba(45,80,22,0.12); }
        .mv-card--vizyon { background: linear-gradient(160deg, #f5f0e0, #faf5e8); border: 2px solid rgba(249,212,35,0.2); }
        .mv-card--vizyon:hover { box-shadow: 0 25px 60px rgba(249,212,35,0.15); }
        .mv-card-icon {
            width: 80px; height: 80px; border-radius: 22px; display: flex;
            align-items: center; justify-content: center; font-size: 34px; margin-bottom: 30px;
        }
        .mv-card--misyon .mv-card-icon { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: #fff; }
        .mv-card--vizyon .mv-card-icon { background: linear-gradient(135deg, #f9d423, #e8b91f); color: #fff; }
        .mv-card h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: 20px; color: var(--text-color); }
        .mv-card p { font-size: 1.05rem; line-height: 1.85; color: var(--text-light); }
        .mv-card-deco { position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; opacity: 0.06; }
        .mv-card--misyon .mv-card-deco { background: var(--primary-color); }
        .mv-card--vizyon .mv-card-deco { background: #f9d423; }

        /* ===== DEĞERLER ===== */
        .values-section { padding: 100px 0; background: linear-gradient(180deg, #f8f9fa, #fff); }
        .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
        .value-card {
            text-align: center; padding: 50px 30px 45px; border-radius: 24px;
            background: #fff; border: 2px solid #f0f0f0;
            transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1); position: relative; overflow: hidden;
        }
        .value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 4px 4px 0 0; transition: height 0.4s; }
        .value-card:nth-child(1)::before { background: linear-gradient(90deg, #2d5016, #6b8e23); }
        .value-card:nth-child(2)::before { background: linear-gradient(90deg, #f9d423, #e8b91f); }
        .value-card:nth-child(3)::before { background: linear-gradient(90deg, #3498db, #2980b9); }
        .value-card:nth-child(4)::before { background: linear-gradient(90deg, #e74c3c, #c0392b); }
        .value-card:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(0,0,0,0.08); border-color: transparent; }
        .value-card:hover::before { height: 6px; }
        .value-icon {
            width: 90px; height: 90px; border-radius: 50%; display: flex;
            align-items: center; justify-content: center; margin: 0 auto 28px; font-size: 36px;
            transition: transform 0.4s;
        }
        .value-card:hover .value-icon { transform: scale(1.1) rotate(-5deg); }
        .value-card:nth-child(1) .value-icon { background: linear-gradient(135deg, #e8f5d8, #d4ecc0); color: var(--primary-color); }
        .value-card:nth-child(2) .value-icon { background: linear-gradient(135deg, #fef9e0, #fdf2c4); color: #b8941a; }
        .value-card:nth-child(3) .value-icon { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #2980b9; }
        .value-card:nth-child(4) .value-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); color: #c0392b; }
        .value-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--text-color); margin-bottom: 14px; }
        .value-card p { font-size: 0.95rem; line-height: 1.75; color: var(--text-light); }

        /* ===== RAKAMLARLA ===== */
        .numbers-section {
            padding: 100px 0; background: linear-gradient(135deg, var(--primary-color), #1a3a0a);
            color: #fff; position: relative; overflow: hidden;
        }
        .numbers-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: rgba(143,188,63,0.06); }
        .numbers-section .section-heading { color: #fff; }
        .numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; position: relative; z-index: 2; }
        .number-card {
            text-align: center; padding: 40px 20px; border-radius: 20px;
            background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.08); transition: all 0.4s;
        }
        .number-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-8px); }
        .number-card i { font-size: 42px; color: var(--accent-color); margin-bottom: 20px; }
        .number-value {
            font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 800;
            line-height: 1; margin-bottom: 10px;
            background: linear-gradient(135deg, #fff, #f9d423);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .number-card p { font-size: 1rem; opacity: 0.75; }

        /* ===== QUOTE ===== */
        .quote-section { padding: 90px 0; background: #fff; }
        .quote-wrapper { max-width: 800px; margin: 0 auto; text-align: center; }
        .quote-icon { font-size: 80px; color: rgba(143,188,63,0.12); margin-bottom: 30px; }
        .quote-text {
            font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 600; line-height: 1.7; color: var(--text-color); font-style: italic; margin-bottom: 30px;
        }

        /* ===== CTA ===== */
        .about-cta { padding: 100px 0; background: linear-gradient(160deg, #fafaf2, #f0f5e8); }
        .about-cta-wrapper { display: flex; align-items: center; gap: 60px; }
        .about-cta-text { flex: 1; }
        .about-cta-text h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 800; color: var(--text-color); margin-bottom: 18px; line-height: 1.25; }
        .about-cta-text p { font-size: 1.1rem; line-height: 1.8; color: var(--text-light); margin-bottom: 35px; }
        .cta-buttons { display: flex; gap: 18px; flex-wrap: wrap; }
        .btn-cta-primary {
            padding: 16px 38px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff; font-weight: 700; border-radius: 50px; display: inline-flex;
            align-items: center; gap: 10px; transition: all 0.35s; box-shadow: 0 8px 30px rgba(45,80,22,0.25);
        }
        .btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(45,80,22,0.35); }
        .btn-cta-outline {
            padding: 16px 38px; background: transparent; color: var(--primary-color); font-weight: 700;
            border: 2px solid var(--primary-color); border-radius: 50px;
            display: inline-flex; align-items: center; gap: 10px; transition: all 0.35s;
        }
        .btn-cta-outline:hover { background: var(--primary-color); color: #fff; transform: translateY(-3px); }

        /* Section Header */
        .section-label {
            display: inline-flex; align-items: center; gap: 8px; padding: 8px 22px;
            background: rgba(143,188,63,0.12); color: var(--secondary-color);
            font-weight: 700; font-size: 0.85rem; letter-spacing: 1.5px;
            text-transform: uppercase; border-radius: 50px; margin-bottom: 20px;
        }
        .section-heading {
            font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800; color: var(--text-color); line-height: 1.2;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .about-main-grid { grid-template-columns: 1fr; }
            .about-gallery { max-width: 600px; }
            .challenges-grid { grid-template-columns: 1fr; }
            .challenge-photos { max-width: 500px; }
            .mv-grid { grid-template-columns: 1fr; gap: 30px; }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .numbers-grid { grid-template-columns: repeat(2, 1fr); }
            .about-cta-wrapper { flex-direction: column; }
        }
        @media (max-width: 768px) {
            .about-hero-content h1 { font-size: 2rem; }
            .about-text h2 { font-size: 2rem; }
            .values-grid { grid-template-columns: 1fr; }
            .numbers-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
            .number-value { font-size: 2.4rem; }
            .about-gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
            .challenge-photos { grid-template-columns: 1fr 1fr; }
            .challenge-photo:first-child { grid-row: auto; }
            .project-features { gap: 16px; }
            .project-feat { padding: 12px 20px; font-size: 0.85rem; }
        }