 /* Sayfaya özel stiller */
        .hero-simple {
            background: linear-gradient(135deg, var(--primary-burgundy) 0%, #2d1516 100%);
            padding: 3rem 0 4rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-simple::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(197,160,40,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        .president-photo {
            max-width: 320px;
            width: 100%;
            border-radius: 40px;
            box-shadow: 0 30px 40px rgba(0,0,0,0.3);
            transition: all 0.4s ease;
            border: 3px solid rgba(197,160,40,0.3);
        }
        .president-photo:hover {
            transform: scale(1.02);
            border-color: var(--primary-gold);
        }
        .social-circle {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(4px);
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            border: 1px solid rgba(197,160,40,0.3);
        }
        .social-circle:hover {
            transform: translateY(-6px) scale(1.05);
            background: var(--primary-gold);
            color: var(--primary-burgundy);
            border-color: var(--primary-gold);
        }
        .quote-simple {
            font-size: 1.15rem;
            font-style: italic;
            border-left: 4px solid var(--primary-gold);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            opacity: 0.95;
        }
        /* Biyografi Kartı - Modern Tasarım */
        .bio-modern {
            background: white;
            border-radius: 35px;
            padding: 2rem 2rem;
            box-shadow: 0 25px 45px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            border-bottom: 4px solid var(--primary-gold);
        }
        .bio-modern::before {
            content: '"';
            position: absolute;
            bottom: -20px;
            right: 20px;
            font-size: 120px;
            opacity: 0.05;
            font-family: serif;
            color: var(--primary-burgundy);
        }
        .bio-timeline {
            position: relative;
        }
        .bio-timeline-item {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .bio-timeline-year {
            min-width: 95px;
            font-weight: 800;
            color: var(--primary-gold);
            font-size: 1rem;
            letter-spacing: -0.3px;
            position: relative;
        }
        .bio-timeline-text {
            flex: 1;
            color: #3a3a3a;
            font-weight: 500;
            line-height: 1.5;
        }
        .bio-timeline-text p {
            margin-bottom: 0;
        }
        .bio-quote {
            background: linear-gradient(135deg, #fef9e8 0%, #fff6e5 100%);
            padding: 1.2rem 1.5rem;
            border-radius: 24px;
            margin-top: 1.5rem;
            border-left: 4px solid var(--primary-gold);
            font-style: italic;
            color: #4a4a4a;
        }
        /* Galeri Stili - Pagination ile */
        .gallery-section {
            background: linear-gradient(180deg, #fefaf0 0%, #fff 100%);
            border-radius: 48px;
            padding: 2rem 1.5rem;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .gallery-item {
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            aspect-ratio: 4 / 3;
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.2);
        }
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 1rem;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        .gallery-overlay i {
            font-size: 1.8rem;
            color: var(--primary-gold);
        }
        /* Pagination Stili */
        .gallery-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }
        .page-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            border: 2px solid #e0d5c0;
            color: var(--primary-burgundy);
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        .page-btn.active {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: #2d2d2d;
            transform: scale(1.05);
        }
        .page-btn:hover:not(.active) {
            border-color: var(--primary-gold);
            background: #fff3e0;
            transform: translateY(-2px);
        }
        .nav-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
            transition: all 0.3s;
        }
        .nav-btn:hover {
            background: var(--primary-gold);
            color: white;
            transform: scale(1.05);
        }
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }
        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: repeat(1, 1fr);
            }
            .bio-timeline-item {
                flex-direction: column;
                gap: 0.3rem;
            }
            .bio-timeline-year {
                min-width: auto;
            }
            .social-circle {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            .president-photo {
                max-width: 240px;
            }
            .quote-simple {
                font-size: 0.95rem;
            }
            .bio-modern {
                padding: 1.5rem;
            }
        }
        @media (max-width: 400px) {
            .gallery-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }