/* Ahmetli masaüstü ana sayfa — Laravel ahmetliyeni home.blade görünümüne paralel (yeni yazım) */
* { box-sizing: border-box; }
* { -ms-overflow-style: none; scrollbar-width: none; }
*::-webkit-scrollbar { display: none; }
html, body { overflow-x: hidden; margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1d21;
    background: #f5f6f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.header-top {
    background: linear-gradient(180deg, #ffffff 0%, #275dc8 100%);
    color: #1d2327;
    padding: 14px 0;
    position: relative;
}
.header-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo-img {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.header-logo-img:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(0,61,122,0.12); }
.header-logo-img img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.header-logo-fallback {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #003d7a 0%, #0066b3 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 48px;
}
.header-center { flex: 1; display: flex; flex-direction: column; align-items: center; margin: 0 24px; }
.header-search { width: 100%; max-width: 400px; position: relative; display: flex; }
.header-search input {
    width: 100%;
    padding: 10px 45px 10px 16px;
    border: none;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 0 0 1px #e4e8f0;
    font-size: 14px;
    outline: none;
}
.header-search input:focus { box-shadow: inset 0 0 0 2px rgba(29,111,220,.25), 0 12px 24px rgba(29,111,220,.15); }
.header-search-btn {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    background: #003d7a; border: none; color: #fff; border-radius: 50%;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.header-right { display: flex; align-items: center; gap: 48px; }
.header-buttons { display: flex; gap: 16px; align-items: center; margin-right: auto; }
.header-btn {
    display: inline-flex; flex-direction: row; align-items: center; gap: 10px;
    padding: 12px 22px; background: rgba(255,255,255,0.85); color: #1d2327;
    text-decoration: none; border-radius: 50px; font-size: 12px; font-weight: 500;
    box-shadow: 0 8px 20px rgba(16,24,40,.15); border: none; cursor: pointer; font-family: inherit;
    backdrop-filter: blur(6px);
}
.header-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.9); color: #003d7a; }
.header-btn-icon {
    width: 28px; height: 28px; border-radius: 50%; background: rgba(0,61,122,0.08);
    display: flex; align-items: center; justify-content: center;
}
.header-btn-text {
    font-weight: 800; letter-spacing: 0.2px; font-size: 14px; color: #0b2a5a;
    text-shadow: 0 1px 0 rgba(255,255,255,.9), 0 6px 16px rgba(11,42,90,.18);
}
.ebeledye-e { color: #8B0000; font-style: italic; font-size: 15px; }
.header-social { display: flex; gap: 8px; align-items: center; }
.social-icon {
    width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: transform 0.2s ease; color: #fff;
}
.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.whatsapp { background: #25D366; }
.social-icon:hover { transform: translateY(-2px); }

.nav-menu-bar {
    margin-top: -52px; position: relative; z-index: 10;
}
.nav-menu-container {
    max-width: 1400px; margin: 0 auto; padding: 8px 40px 0 80px;
    display: flex; justify-content: flex-end;
}
.nav-menu { display: flex; list-style: none; gap: 4px; margin: 0; padding: 0; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu li a {
    display: block; padding: 12px 18px; color: #fff !important; text-decoration: none;
    font-weight: 600 !important; font-size: 14px !important; text-transform: uppercase !important;
    letter-spacing: 0.3px !important; border-radius: 8px; transition: all 0.3s;
}
.nav-menu li a:hover { background: rgba(255,255,255,0.1); }
.nav-submenu {
    display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
    list-style: none; margin: 0; padding: 8px 0;
    background: rgba(15, 46, 87, 0.98); border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25); z-index: 200;
}
.nav-menu li:hover > .nav-submenu, .nav-menu li:focus-within > .nav-submenu { display: block; }
.nav-submenu li a { font-size: 13px !important; white-space: nowrap; }

.hero-slider {
    position: relative; width: 100%; overflow: hidden; margin: 0; padding: 0;
    height: 60vh; min-height: 400px; max-height: 650px;
}
@media (max-width: 768px) {
    .hero-slider { height: 45vh; min-height: 300px; max-height: 450px; }
}
.hero-slider-container {
    position: absolute; top: 0; left: 0; display: flex; height: 100%;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
    height: 100%; position: relative; flex-shrink: 0; overflow: hidden;
}
.hero-slide > a, .hero-slide > img {
    position: absolute; inset: 0; display: block; width: 100%; height: 100%;
}
.hero-slide > a img, .hero-slide > img {
    width: 100% !important; height: 100% !important; object-fit: cover !important;
    object-position: center center !important;
}
.hero-slide--fallback {
    background: linear-gradient(135deg, #003d7a 0%, #0056b3 100%);
}
.slider-arrows {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.2); color: #fff; font-size: 24px; cursor: pointer; z-index: 3;
}
.slider-arrows:hover { background: rgba(255,255,255,0.3); }
.slider-arrow-left { left: 20px; }
.slider-arrow-right { right: 20px; }

.scroll-down-btn {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 50px; background: rgba(255,255,255,0.9);
    border: 2px solid #0f2e57; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; box-shadow: 0 4px 12px rgba(15,46,87,0.2);
    animation: ahmetliBounce 2s infinite; text-decoration: none;
}
.scroll-down-btn:hover { background: #0f2e57; }
.scroll-down-btn:hover svg { stroke: #fff; }
@keyframes ahmetliBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    background: linear-gradient(135deg, #003d7a 0%, #002855 52%, #0b5cad 100%);
    color: #fff; transform: translateY(-100%); opacity: 0; transition: transform 0.28s ease, opacity 0.28s ease;
    box-shadow: 0 8px 32px rgba(0,61,122,0.35);
}
.scroll-header.is-visible { transform: translateY(0); opacity: 1; }
.scroll-header-inner {
    max-width: 1400px; margin: 0 auto; padding: 10px 20px;
    display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; min-height: 52px;
}
.scroll-header-title { text-align: center; font-weight: 700; font-size: 16px; }
.hamburger-toggle {
    width: 44px; height: 44px; border: none; border-radius: 12px;
    background: rgba(255,255,255,0.2); color: #fff; cursor: pointer;
}
.hamburger-icon { position: relative; width: 20px; height: 14px; display: block; margin: 0 auto; }
.hamburger-icon span {
    position: absolute; left: 0; right: 0; height: 2px; background: #fff; border-radius: 2px;
}
.hamburger-icon span:nth-child(1) { top: 0; }
.hamburger-icon span:nth-child(2) { top: 7px; }
.hamburger-icon span:nth-child(3) { top: 14px; }

.hamburger-drawer-overlay[hidden] { display: none !important; }
.hamburger-drawer-overlay {
    position: fixed; inset: 0; background: rgba(15,23,42,0.45); z-index: 600;
    display: flex; justify-content: flex-end;
}
.hamburger-drawer {
    width: min(420px, 92vw); height: 100%; background: #fff;
    box-shadow: -12px 0 40px rgba(0,0,0,0.15); overflow-y: auto;
    display: flex; flex-direction: column;
}
.hamburger-drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 18px; border-bottom: 1px solid #e5e7eb; font-weight: 700;
}
.hamburger-close {
    border: none; background: #f1f5f9; width: 40px; height: 40px; border-radius: 10px; font-size: 22px; cursor: pointer;
}
.hamburger-drawer-list { list-style: none; margin: 0; padding: 12px 16px; flex: 1; }
.hamburger-drawer-list > li { margin-bottom: 8px; }
.hamburger-drawer-list a {
    display: block; padding: 12px 14px; border-radius: 10px; text-decoration: none; color: #0f172a; font-weight: 600;
}
.hamburger-drawer-list a:hover { background: rgba(0,61,122,0.06); }
.hamburger-drawer-submenu { list-style: none; margin: 4px 0 0 12px; padding: 0; }
.drawer-extras { padding: 16px; border-top: 1px solid #e5e7eb; }
.drawer-section-title { font-size: 11px; letter-spacing: 0.1em; color: #94a3b8; text-transform: uppercase; margin-bottom: 10px; }
.drawer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.drawer-social a {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff;
}
.drawer-social .facebook { background: #1877f2; }
.drawer-social .twitter { background: #1da1f2; }
.drawer-social .instagram { background: linear-gradient(45deg, #f09433, #bc1888); }
.drawer-social .whatsapp { background: #25D366; }
.drawer-social svg { width: 18px; height: 18px; }

.main-content {
    max-width: 1400px; width: 100%; margin: 0 auto; padding: 60px 40px;
    display: flex; flex-direction: column; gap: 60px; flex: 1 0 auto;
}
.news-section-title { text-align: center; margin-bottom: 24px; }
.news-section-title span:first-child {
    display: block; font-size: 14px; font-weight: 500; color: #7a8aa0; margin-bottom: 2px;
    text-transform: uppercase; letter-spacing: 1px;
}
.news-section-title span:last-child { display: block; font-size: 36px; font-weight: 700; color: #0f2e57; }
.news-slider { overflow: hidden; width: 100%; }
.news-track { display: flex; gap: 20px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.news-card {
    flex: 0 0 calc((100% - 80px) / 5); min-width: 0; background: #fff; border-radius: 16px;
    overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.news-card-image-wrapper { height: 200px; overflow: hidden; background: #f3f4f6; flex-shrink: 0; }
.news-card-image-wrapper img { width: 100%; height: 200px; object-fit: cover; display: block; }
.news-card-image-placeholder {
    height: 200px; display: flex; align-items: center; justify-content: center; font-size: 48px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}
.news-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.news-card-date { font-size: 12px; color: #6b7280; font-weight: 500; }
.news-card-title { font-size: 16px; font-weight: 600; color: #111827; margin: 0; line-height: 1.3; min-height: 42px; }
.news-card-excerpt { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.news-arrow-btn {
    width: 44px; height: 44px; border-radius: 12px; border: none; background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); cursor: pointer; color: #0f2e57;
}
.news-arrow-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.news-dots { display: flex; gap: 8px; align-items: center; }
.news-dot {
    width: 8px; height: 8px; border-radius: 50%; border: none; background: #d1d5db; cursor: pointer; padding: 0;
}
.news-dot.active { width: 24px; border-radius: 4px; background: #0f2e57; }
.news-all-btn { margin-top: 24px; text-align: center; }
.news-all-btn a {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 10px; color: #0f2e57; text-decoration: none; font-weight: 600; font-size: 14px;
}

.two-column-section {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; width: 100%; align-items: stretch;
}
.two-column-section--single {
    grid-template-columns: 1fr;
}
@media (max-width: 1024px) {
    .two-column-section { grid-template-columns: 1fr; }
    .news-card { flex: 0 0 calc((100% - 40px) / 3); }
}
@media (max-width: 768px) {
    .header-top-container { flex-wrap: wrap; gap: 16px; }
    .news-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 480px) {
    .news-card { flex: 0 0 100%; }
}

.announcements-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px; padding: 32px 28px; box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    min-height: 380px; display: flex; flex-direction: column; border: 1px solid rgba(0,61,122,0.08);
}
.announcements-title {
    font-size: 28px; font-weight: 700; color: #003d7a; margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
}
.announcements-title::before {
    content: ''; width: 4px; height: 28px;
    background: linear-gradient(180deg, #003d7a, #0056b3); border-radius: 2px;
}
.announcements-list { display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 180px; }
.announcement-item {
    display: flex; align-items: center; padding: 16px 18px; text-decoration: none; color: inherit;
    background: #fff; gap: 14px; border-radius: 12px; border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04); transition: all 0.3s ease;
}
.announcement-item:hover {
    background: linear-gradient(135deg, #f0f4ff, #fff); border-color: #003d7a;
    transform: translateX(6px); box-shadow: 0 4px 12px rgba(0,61,122,0.12);
}
.announcement-arrow { color: #003d7a; font-size: 18px; font-weight: 600; flex-shrink: 0; }
.announcement-title { flex: 1; font-size: 14px; font-weight: 500; color: #1d2327; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announcements-view-all { margin-top: 24px; text-align: center; }
.announcements-view-all a {
    display: inline-flex; padding: 12px 24px; background: linear-gradient(135deg, #003d7a, #0056b3);
    color: #fff; text-decoration: none; border-radius: 10px; font-weight: 600; font-size: 14px;
}

.quick-access-panel {
    background: #f5f5f5; border-radius: 20px; padding: 26px 22px; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    min-height: 380px; width: 100%; max-width: 520px; justify-self: end; display: flex; flex-direction: column;
}
@media (max-width: 1024px) {
    .quick-access-panel { max-width: none; justify-self: stretch; }
}
.quick-access-title { font-size: 32px; font-weight: 700; color: #003d7a; margin-bottom: 28px; line-height: 1.2; }
.quick-access-title span { display: block; font-size: 16px; font-weight: 400; color: #646970; margin-top: 4px; }
.quick-access-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.quick-access-btn {
    min-height: 95px; background: #fff; border: none; border-radius: 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; text-decoration: none; color: #1d2327; padding: 16px 8px; transition: all 0.2s ease;
}
.quick-access-btn.blue { background: #1d3554; color: #fff; }
.quick-access-btn.yellow { background: #ffc107; color: #fff; }
.quick-access-btn.white { background: #fff; border: 1px solid #e5e7eb; }
.quick-access-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.quick-access-icon svg { width: 30px; height: 30px; }
.quick-access-label { font-size: 12px; font-weight: 500; text-align: center; line-height: 1.3; }

.mayor-section { max-width: 1400px; margin: 0 auto; padding: 20px 40px 60px; background: #f8f9fa; }
.mayor-container {
    background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: grid; grid-template-columns: 380px 1fr; min-height: 400px;
}
@media (max-width: 1024px) {
    .mayor-container { grid-template-columns: 280px 1fr; }
}
@media (max-width: 768px) {
    .mayor-section { padding: 50px 20px; }
    .mayor-container { grid-template-columns: 1fr; }
}
.mayor-image-wrapper { position: relative; min-height: 400px; overflow: hidden; }
.mayor-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 400px; }
.mayor-image-placeholder {
    min-height: 400px; background: linear-gradient(180deg, #003d7a, #0056b3);
    display: flex; align-items: center; justify-content: center; font-size: 100px; color: rgba(255,255,255,0.3);
}
.mayor-image-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
    padding: 40px 30px 30px; color: #fff; text-align: center;
}
.mayor-name { font-size: 28px; font-weight: 700; margin: 0 0 8px; }
.mayor-position { font-size: 14px; margin: 0 0 16px; opacity: 0.95; }
.mayor-content { padding: 40px 50px; display: flex; flex-direction: column; justify-content: center; }
.mayor-bio { font-size: 16px; line-height: 1.9; color: #1d2327; text-align: justify; }

.projects-section-bottom { width: 100%; max-width: 1400px; margin: 0 auto; padding: 60px 40px 80px; }
.projects-title { font-size: 32px; font-weight: 700; color: #0f2e57; text-align: center; margin-bottom: 32px; }
.projects-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.project-filter-btn {
    padding: 12px 24px; border: none; border-radius: 8px; background: #e3f2fd; color: #0f2e57;
    font-weight: 600; font-size: 14px; cursor: pointer; text-transform: uppercase;
}
.project-filter-btn.active { background: #0f2e57; color: #fff; }
.projects-slider { --projects-columns: 3; overflow: hidden; width: 100%; }
.projects-track { display: flex; gap: 24px; transition: transform 0.4s ease; }
.project-card {
    flex: 0 0 calc((100% - 48px) / 3); min-width: 0; background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-decoration: none; color: inherit; display: block;
}
@media (max-width: 1200px) {
    .projects-slider { --projects-columns: 2; }
    .project-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 768px) {
    .projects-slider { --projects-columns: 1; }
    .project-card { flex: 0 0 100%; }
}
.project-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.project-card-img--ph {
    height: 220px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0f2e57, #003d7a); font-size: 64px;
}
.project-card-content { padding: 20px; }
.project-card-content .project-card-title { margin: 0 0 12px; }
.project-card-info { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.project-info-item { font-size: 13px; color: #64748b; }
.project-card-status {
    display: inline-block; padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600;
    margin-top: 12px; width: 100%; text-align: center;
}
.project-card-status.devam_eden { background: #fff3cd; color: #856404; }
.project-card-status.tamamlanan { background: #d4edda; color: #155724; }
.project-card-status.planlanan { background: #d1ecf1; color: #0c5460; }
.projects-view-all {
    display: flex; justify-content: center; margin-top: 28px; padding: 14px 28px; background: #003d7a; color: #fff;
    border-radius: 50px; font-size: 16px; font-weight: 600; text-decoration: none; max-width: 300px; margin-left: auto; margin-right: auto;
}

.footer {
    background: linear-gradient(135deg, #003d7a 0%, #002855 100%) !important;
    color: #fff !important; padding: 80px 40px 40px !important; margin-top: auto; position: relative; overflow: hidden;
}
.footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #dc3545, #f57c00, #dc3545);
}
.footer-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.footer--compact { padding: 48px 40px 32px !important; }
.footer-grid--compact {
    display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px;
}
.footer-grid--compact .footer-contact-info { margin-left: 0; }
.footer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr) 1.2fr; gap: 50px; margin-bottom: 50px;
}
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-contact-info { margin-left: 0 !important; }
}
.footer-column-title { font-size: 20px; font-weight: 700; margin-bottom: 24px; color: #fff; position: relative; padding-bottom: 12px; }
.footer-column-title::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: #dc3545; border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
    color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact-info { display: flex; flex-direction: column; gap: 16px; margin-left: 40px; }
.footer-logo { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; margin-bottom: 24px; }
.footer-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.footer-logo-fallback {
    width: 100%; height: 100%; background: #003d7a; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 32px;
}
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.9); }
.footer-contact-item a { color: rgba(255,255,255,0.9); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15); padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-mobile-link { color: rgba(255,255,255,0.9); text-decoration: underline; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1);
}
.footer-social a[aria-label="Facebook"] { background: #1877F2; border-color: #1877F2; }
.footer-social a[aria-label="Twitter"] { background: #1da1f2; border-color: #1da1f2; }
.footer-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}
.footer-social a[aria-label="WhatsApp"] { background: #25D366; border-color: #25D366; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.footer-copy { margin: 0; font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.45; max-width: 560px; }

.mayor-social {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.mayor-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    transition: transform 0.15s ease, background 0.15s ease;
}
.mayor-social-link:hover { transform: translateY(-2px); background: rgba(255,255,255,0.32); }
.mayor-bio--muted { color: #64748b; font-style: italic; }

/* Etkinlikler */
.events-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 40px 56px;
    background: #f8f9fa;
}
.events-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.events-section-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #0f2e57;
}
.events-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #0f2e57;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.events-all-btn:hover { border-color: #003d7a; color: #003d7a; }
.events-all-btn--solo { margin-top: 8px; }
.events-slider { overflow: hidden; width: 100%; }
.events-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}
.event-card {
    flex: 0 0 min(420px, 88vw);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 41, 70, 0.12);
    border: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15, 41, 70, 0.16); }
.event-card-image-wrapper { height: 200px; background: #f3f4f6; overflow: hidden; }
.event-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-card-img--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff;
}
.event-card-content { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.event-card-title { margin: 0; font-size: 17px; font-weight: 700; color: #1d2327; line-height: 1.35; }
.event-card-date { font-size: 13px; color: #4b5563; font-weight: 500; }
.events-empty {
    background: #fff;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    border: 1px dashed #cbd5e1;
    color: #475569;
}

/* Abonelik kartları — yalnızca bilgi / dış bağlantı (POST yok) */
.subscription-cards-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 56px;
    background: #f5f6f8;
}
.subscription-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
@media (max-width: 900px) {
    .subscription-cards-grid { grid-template-columns: 1fr; }
}
.subscription-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}
.subscription-card-title { margin: 0 0 12px; font-size: 20px; font-weight: 700; color: #0f2e57; }
.subscription-card-description { margin: 0 0 18px; font-size: 14px; line-height: 1.55; color: #475569; }
.subscription-card-actions { margin-bottom: 12px; }
.subscription-card-button--link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    background: #003d7a;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.subscription-card-button--link:hover { background: #005a87; }
.subscription-card-note { margin: 0; font-size: 12px; color: #94a3b8; }
.subscription-card-muted { font-size: 13px; color: #64748b; }

/* Kurumlar */
.institutions-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 40px 64px;
    background: #f5f6f8;
}
.institutions-header { margin-bottom: 20px; }
.institutions-title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #0f2e57;
}
.institutions-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}
.institutions-track {
    display: flex;
    gap: 20px;
    padding: 4px 2px 8px;
}
.institution-card {
    flex: 0 0 200px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    text-decoration: none;
    color: #0f172a;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.15s ease;
}
.institution-card:hover { transform: translateY(-3px); }
.institution-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
}
.institution-card-logo-fallback {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}
.institution-card-title { font-size: 14px; font-weight: 600; line-height: 1.35; }
.institutions-empty { text-align: center; color: #64748b; padding: 24px; }
