/* ==========================================================================
   CENGİZ - İLÇE BAŞKAN ADAYLIĞI TANITIM PLATFORMU
   Modern, Kurumsal, Prestijli ve Tam Duyarlı Tasarım Sistemi
   ========================================================================== */

:root {
    --primary: #0f172a;        /* Derin Gece Laciverti */
    --primary-light: #1e293b;
    --accent: #e11d48;         /* Prestijli Kırmızı / Bayrak Tonu */
    --accent-hover: #be123c;
    --accent-subtle: rgba(225, 29, 72, 0.08);
    --secondary: #2563eb;      /* Güven Mavisi */
    --gold: #d97706;           /* Asil Altın Vurgu */
    --bg-main: #f8fafc;        /* Temiz Aydınlık Zemin */
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12);
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Konteyner */
.cengiz-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Canlı Yayın Üst Bar */
.top-live-banner {
    background: linear-gradient(90deg, #be123c, #e11d48);
    color: #fff;
    padding: 9px 0;
    font-size: 13px;
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.3);
    position: relative;
    z-index: 101;
}
.live-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 12px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.live-title-text {
    flex: 1;
    font-weight: 600;
}
.btn-live-watch {
    background: #fff;
    color: #e11d48;
    padding: 4px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    transition: var(--transition);
}
.btn-live-watch:hover {
    background: #ffe4e6;
}

/* Header & Menü */
.cengiz-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.logo-badge {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0f172a 0%, #e11d48 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.3px;
    line-height: 1.1;
}
.logo-name.white { color: #fff; }
.logo-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.logo-sub.white { color: #fda4af; }

.cengiz-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-item {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-item:hover, .nav-item.active {
    color: var(--accent);
    background: var(--accent-subtle);
}
.nav-badge {
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
}
.nav-btn-admin {
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 8px;
    margin-left: 8px;
    transition: var(--transition);
}
.nav-btn-admin:hover {
    background: #e11d48;
}

/* Mobil Menü Butonu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0b1727 0%, #1e293b 100%);
    color: #fff;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 30%, rgba(225, 29, 72, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fda4af;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-desc {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 540px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: var(--accent);
    color: #fff;
    padding: 15px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.35);
    transition: var(--transition);
}
.btn-hero-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.btn-hero-outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 15px 26px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-card {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
}
.stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 2px;
}

/* Hero Görseli & Floating Tag */
.portrait-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.portrait-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.portrait-floating-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    color: #fff;
}
.tag-title {
    font-size: 18px;
    font-weight: 800;
    display: block;
}
.tag-sub {
    font-size: 13px;
    color: #fda4af;
    font-weight: 600;
}

/* Bölüm Başlıkları */
.home-section {
    padding: 75px 0;
}
.bg-light {
    background-color: #f1f5f9;
}
.section-title-wrap {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}
.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.section-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 12px;
}
.section-subtext {
    font-size: 15px;
    color: var(--text-muted);
}
.title-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Ana Sayfa Hakkımızda Kartı */
.home-about-card {
    background: #fff;
    padding: 45px 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 600;
}
.about-summary-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ==========================================================================
   HIZLIINDI KONU ŞABLONU & PROJE LİSTE KARTLARI (liste_sablonu.php)
   ========================================================================== */
.cengiz-kategori-filtre {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.filtre-btn {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    background: #fff;
    color: var(--text-main);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.filtre-btn:hover, .filtre-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.25);
}

.post-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 28px;
}
.post-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}
.post-img {
    position: relative;
    width: 100%;
    height: 220px;
    background: #0f172a;
    overflow: hidden;
}
.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.post-card:hover .post-img img {
    transform: scale(1.05);
}
.no-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
}
.proje-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.badge-vision {
    background: #2563eb;
    color: #fff;
}
.badge-done {
    background: #10b981;
    color: #fff;
}

.post-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}
.post-category-tag {
    color: var(--accent);
}
.post-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 12px;
}
.post-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}
.post-author {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
}

.post-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.post-btn {
    display: block;
    text-align: center;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}
.post-btn:hover {
    background: var(--accent);
}

/* Paylaşım Barı */
.post-share-bar {
    display: flex;
    gap: 6px;
}
.share-btn {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 6px 0;
    text-decoration: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-btn.fb { background: #1877f2; }
.share-btn.wa { background: #25d366; }
.share-btn.tw { background: #000000; }
.share-btn.copy { background: #475569; }

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.page-link:hover, .page-link.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ==========================================================================
   DETAY SAYFASI (oku.php)
   ========================================================================== */
.detail-page-container {
    padding: 40px 24px 80px;
}
.breadcrumb {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
}
.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}
.breadcrumb a:hover { color: var(--accent); }
.detail-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    overflow: hidden;
    padding: 45px;
    max-width: 900px;
    margin: 0 auto;
}
.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    margin: 15px 0;
    color: var(--primary);
}
.detail-meta-bar {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.detail-media {
    margin-bottom: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.detail-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    border-radius: var(--radius-md);
}
.detail-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
}
.detail-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 40px;
}
.detail-content-text p {
    margin-bottom: 18px;
}
.detail-footer-box {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid var(--border);
}
.detail-footer-box h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--primary);
}
.detail-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* ==========================================================================
   SAYFA BANNER & HAKKIMIZDA & DİĞER SAYFALAR (sayfa.php)
   ========================================================================== */
.page-hero-banner {
    background: linear-gradient(135deg, #0b1727 0%, #1e293b 100%);
    color: #fff;
    padding: 50px 0;
}
.page-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    margin-top: 10px;
}
.page-main-content {
    padding: 60px 24px 80px;
}

/* Hakkımızda Izgarası */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 45px;
    align-items: start;
}
.about-image-card {
    position: sticky;
    top: 100px;
}
.about-portrait {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-badge-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.motto-box {
    margin-top: 10px;
    font-style: italic;
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}

.about-text-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary);
    margin: 10px 0 15px;
}
.lead-summary {
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 25px;
}
.about-paragraphs {
    font-size: 15px;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 30px;
}
.about-paragraphs p {
    margin-bottom: 16px;
}

.vision-mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.vm-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 15px;
}
.vm-icon {
    font-size: 28px;
}
.vm-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}
.vm-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Canlı Yayın Sayfası */
.live-stream-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.live-indicator-pill {
    display: inline-block;
    background: #e11d48;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.live-indicator-pill.offline {
    background: #64748b;
}
.live-schedule-info {
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 25px;
}
.live-video-screen {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #0f172a;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
}
.live-video-screen iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.live-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-align: center;
    padding: 20px;
}
.live-placeholder .icon { font-size: 48px; margin-bottom: 10px; }
.live-interaction-prompt {
    margin-top: 25px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: var(--radius-md);
}
.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

/* Albüm / Galeri */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
}
.gallery-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.gallery-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    top: 12px; left: 12px;
}
.gallery-cat {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}
.gallery-info {
    padding: 16px;
}
.gallery-date {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.gallery-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.35;
}
.gallery-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* İletişim & Vatandaş Kürsüsü */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
}
.contact-info-card, .contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.contact-details-list {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cd-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.cd-icon {
    font-size: 22px;
}

.citizen-form .form-group {
    margin-bottom: 18px;
}
.citizen-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.citizen-form input, .citizen-form select, .citizen-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}
.citizen-form input:focus, .citizen-form select:focus, .citizen-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}
.form-row {
    display: flex;
    gap: 15px;
}
.btn-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}
.btn-submit:hover {
    background: var(--accent-hover);
}
.alert-box {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
    font-size: 14px;
}
.success-alert {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
}

/* Vatandaş Kürsüsü Callout Bar */
.citizen-callout-section {
    padding: 40px 0;
}
.callout-box {
    background: linear-gradient(135deg, #0f172a 0%, #be123c 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-lg);
}
.badge-white {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.callout-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin: 10px 0;
}
.btn-white-callout {
    background: #fff;
    color: var(--accent);
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}
.btn-white-callout:hover {
    background: #ffe4e6;
    transform: translateY(-2px);
}

/* Genel Butonlar */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--accent-hover);
}
.btn-secondary {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.btn-secondary:hover {
    border-color: var(--primary);
}

/* Footer */
.cengiz-footer {
    background: #0b1727;
    color: #fff;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 45px;
    padding-bottom: 50px;
}
.footer-bio {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.6;
}
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 18px;
    color: #fff;
}
.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.footer-nav a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.social-circle {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: var(--transition);
}
.social-circle:hover {
    background: var(--accent);
}

.footer-bottom {
    background: #070e18;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #64748b;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.admin-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
}
.admin-link:hover { color: #fff; }

/* Mobil Uyumluluk (Responsive) */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .portrait-img { height: 380px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .callout-box { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .menu-toggle { display: flex; }
    .cengiz-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        border-bottom: 1px solid var(--border);
    }
    .cengiz-nav.open { display: flex; }
    .nav-item { width: 100%; padding: 12px 16px; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 32px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .post-list-container { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .vision-mission-cards { grid-template-columns: 1fr; }
    .detail-card { padding: 25px 20px; }
}
