/* ============================================================
   ELMUSDER – Ortak Tema CSS
   Tüm iç sayfalar bu dosyayı kullanır.
   index.php stil sistemi esas alınmıştır.
   ============================================================ */

/* ==============================
   CSS DEĞİŞKENLERİ
   ============================== */
:root {
    --primary:    #8B1A2E;
    --accent:     #6B1422;
    --secondary:  #C5A028;
    --light:      #F8F5EE;
    --light-alt:  #F0EBE1;
    --dark:       #2C2C3E;
    --dark-soft:  #4A4A5C;
    --white:      #FFFFFF;
    --border:     #E2D9C8;
    --shadow:     0 4px 20px rgba(44, 44, 62, 0.08);
    --shadow-hover: 0 8px 30px rgba(139, 26, 46, 0.15);
    --radius:     10px;
    --radius-lg:  16px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
}

/* ==============================
   GLOBAL / BASE
   ============================== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 15px;
}

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--dark); }

a { text-decoration: none; transition: color 0.2s ease; }

img { max-width: 100%; height: auto; }

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    border-left: 3px solid var(--secondary);
    padding-left: 10px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--dark-soft);
    max-width: 560px;
    margin-bottom: 0;
}

.section-header { margin-bottom: 50px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin-left: auto; margin-right: auto; }
.section-header .section-title { margin-bottom: 12px; }

/* ==============================
   BUTONLAR
   ============================== */
.btn-primary-custom {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    display: inline-block;
}
.btn-primary-custom:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
    display: inline-block;
}
.btn-outline-custom:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* ==============================
   HEADER
   ============================== */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.site-header .logo-area { display: flex; align-items: center; gap: 14px; min-width: 0; }
.site-header .logo-img { height: 108px; width: auto; object-fit: contain; }
.site-header .logo-text h1 {
    font-size: 2rem; font-weight: 700; color: var(--primary);
    margin: 0; line-height: 1.2; letter-spacing: -0.3px;
}
.site-header .logo-text span {
    font-size: 12px; color: var(--dark-soft); font-family: var(--font-sans);
    font-style: italic; font-weight: 300;
}
.site-header .logo-text { min-width: 0; }
.site-header .header-social {
    display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.site-header .header-social a {
    display: flex; align-items: center; justify-content: flex-end;
    gap: 8px; padding: 3px 5px 3px 12px; border-radius: 8px;
    border: 1.5px solid var(--border); color: var(--dark-soft);
    font-size: 13px; font-weight: 500; text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap;
}
.site-header .header-social a .social-label { font-size: 12px; font-weight: 600; letter-spacing: 0.2px; }
.site-header .header-social a .social-icon {
    width: 26px; height: 26px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0; color: #fff;
}
.site-header .header-social a.social-fb .social-icon  { background-color: #1877F2; }
.site-header .header-social a.social-ig .social-icon  { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.site-header .header-social a.social-yt .social-icon  { background-color: #FF0000; }
.site-header .header-social a:hover {
    border-color: var(--border); background-color: var(--light); color: var(--dark);
}

/* ==============================
   NAVBAR
   ============================== */
.site-navbar { background-color: var(--primary) !important; padding: 0; }
.site-navbar .navbar-toggler { border-color: rgba(255,255,255,0.4); padding: 6px 10px; }
.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-navbar .navbar-nav .nav-link {
    color: rgba(255,255,255,0.88) !important; font-size: 13.5px; font-weight: 500;
    padding: 14px 14px; transition: background-color 0.2s, color 0.2s; letter-spacing: 0.3px;
}
.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link.active {
    background-color: var(--accent); color: var(--white) !important;
}
.site-navbar .navbar-nav .nav-item { border-right: 1px solid rgba(255,255,255,0.1); }
.site-navbar .navbar-nav .nav-item:first-child { border-left: 1px solid rgba(255,255,255,0.1); }

/* Dropdown */
.site-navbar .nav-item.dropdown .dropdown-toggle::after {
    border-color: rgba(255,255,255,0.7) transparent transparent;
    vertical-align: 0.18em;
}
.site-navbar .dropdown-menu {
    background-color: var(--primary);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 6px 0;
    margin-top: 0;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.site-navbar .dropdown-menu .dropdown-item {
    color: rgba(255,255,255,0.85);
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 18px;
    transition: background-color 0.2s, color 0.2s;
}
.site-navbar .dropdown-menu .dropdown-item:hover,
.site-navbar .dropdown-menu .dropdown-item:focus {
    background-color: var(--accent);
    color: var(--white);
}
.site-navbar .dropdown-menu .dropdown-divider { border-color: rgba(255,255,255,0.12); }

/* Hover ile açılır menü */
@media (min-width: 992px) {
    .site-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .site-navbar .nav-item.dropdown > .dropdown-toggle {
        pointer-events: auto;
    }
}

/* ==============================
   PAGE HERO (İç Sayfalar)
   ============================== */
.page-hero {
    background-color: var(--primary);
    background-image: linear-gradient(120deg, #2A0A12 0%, #8B1A2E 55%, #6B1422 100%);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; right: -40px; bottom: -80px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255,255,255,0.04); pointer-events: none;
}
.page-hero .page-hero-label {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--secondary); margin-bottom: 10px;
}
.page-hero h1 {
    font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700;
    color: #fff; margin-bottom: 10px; line-height: 1.25;
}
.page-hero .page-hero-desc {
    font-size: 15px; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 0;
}
.page-hero .breadcrumb {
    background: transparent; padding: 0; margin: 16px 0 0; font-size: 13px;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero .breadcrumb-item a:hover { color: var(--secondary); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ==============================
   SIDEBAR
   ============================== */
.sidebar-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.sidebar-card-header {
    background-color: var(--light);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}
.sidebar-card-header h3 {
    font-size: 0.92rem; font-weight: 700; color: var(--dark);
    margin: 0; font-family: var(--font-serif);
}
.sidebar-card-body { padding: 18px 20px; }

.sidebar-news-item {
    display: flex; gap: 12px; padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.sidebar-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-news-item .sni-img {
    width: 68px; height: 52px; border-radius: 6px; overflow: hidden; flex-shrink: 0;
}
.sidebar-news-item .sni-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-news-item .sni-img-ph {
    width: 68px; height: 52px; border-radius: 6px; flex-shrink: 0;
    background: var(--light-alt); display: flex; align-items: center;
    justify-content: center; color: var(--border); font-size: 18px;
}
.sidebar-news-item .sni-content h4 {
    font-size: 13px; font-weight: 600; color: var(--dark);
    line-height: 1.4; margin-bottom: 4px; font-family: var(--font-sans);
    transition: color 0.2s;
}
.sidebar-news-item:hover .sni-content h4 { color: var(--primary); }
.sidebar-news-item .sni-date { font-size: 11.5px; color: var(--dark-soft); }

.sidebar-link-list { list-style: none; padding: 0; margin: 0; }
.sidebar-link-list li { border-bottom: 1px solid var(--border); }
.sidebar-link-list li:last-child { border-bottom: none; }
.sidebar-link-list a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 0; font-size: 13.5px; color: var(--dark); transition: color 0.2s;
}
.sidebar-link-list a:hover { color: var(--primary); }
.sidebar-link-list a i { color: var(--secondary); font-size: 12px; }

/* ==============================
   CONTENT BODY (Makale / Detay)
   ============================== */
.content-section { background-color: var(--white); padding: 70px 0; }

.content-body { font-size: 15.5px; line-height: 1.9; color: var(--dark-soft); }
.content-body h2 {
    font-family: var(--font-serif); color: var(--dark); font-size: 1.55rem;
    font-weight: 700; margin-top: 36px; margin-bottom: 14px;
}
.content-body h3 {
    font-family: var(--font-serif); color: var(--dark); font-size: 1.25rem;
    font-weight: 700; margin-top: 28px; margin-bottom: 12px;
}
.content-body p { margin-bottom: 18px; }
.content-body blockquote {
    border-left: 4px solid var(--secondary); background-color: var(--light);
    padding: 16px 22px; border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0; font-style: italic; color: var(--dark); font-size: 15px;
}
.content-body img { border-radius: var(--radius); margin: 20px 0; }

.content-cover-img {
    width: 100%; max-height: 420px; object-fit: cover;
    border-radius: var(--radius-lg); margin-bottom: 32px;
    box-shadow: var(--shadow); display: block;
}
.content-cover-ph {
    width: 100%; height: 320px;
    background: linear-gradient(135deg, var(--light-alt) 0%, #ddd3c0 100%);
    border-radius: var(--radius-lg); margin-bottom: 32px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px; color: var(--dark-soft);
    border: 1px solid var(--border);
}
.content-cover-ph i { font-size: 40px; color: var(--primary); opacity: 0.35; }
.content-cover-ph span { font-size: 13px; color: var(--dark-soft); }

.content-meta {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.content-meta .meta-item {
    font-size: 13px; color: var(--dark-soft); display: flex; align-items: center; gap: 5px;
}
.content-meta .meta-item i { color: var(--secondary); }
.content-meta .meta-category {
    font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    color: var(--primary); background-color: rgba(139,26,46,0.08);
    padding: 3px 12px; border-radius: 20px;
}

/* ==============================
   NEWS CARD
   ============================== */
.news-card {
    background-color: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s; height: 100%; display: flex; flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.news-card .news-img-wrap { overflow: hidden; height: 200px; }
.news-card .news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-img-wrap img { transform: scale(1.05); }
.news-card .news-img-ph {
    height: 200px; background: linear-gradient(135deg, var(--light-alt), #ddd3c0);
    display: flex; align-items: center; justify-content: center; color: var(--border); font-size: 36px;
}
.news-card .news-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-card .news-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.news-card .news-date { font-size: 12px; color: var(--dark-soft); }
.news-card .news-date i { color: var(--secondary); margin-right: 4px; }
.news-card .news-category {
    font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    color: var(--primary); background-color: rgba(139, 26, 46, 0.08);
    padding: 2px 10px; border-radius: 20px;
}
.news-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 10px; }
.news-card .news-excerpt { font-size: 13.5px; color: var(--dark-soft); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.news-card .news-link {
    font-size: 13px; font-weight: 600; color: var(--primary);
    display: flex; align-items: center; gap: 6px; align-self: flex-start;
    border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.news-card .news-link:hover { border-color: var(--primary); }
.blog-tag {
    display: inline-block; font-size: 11px; font-weight: 600;
    color: var(--primary); background-color: rgba(139, 26, 46, 0.08);
    padding: 3px 10px; border-radius: 20px;
}

/* ==============================
   EVENT CARD
   ============================== */
.event-card {
    background-color: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow);
    display: flex; gap: 20px; transition: box-shadow 0.3s, transform 0.3s; height: 100%; flex-direction: column;
}
.event-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.event-card.past { opacity: .82; }
.event-card.past:hover { opacity: 1; }
/* Date box */
.event-date-box {
    background-color: var(--primary); color: var(--white); border-radius: var(--radius);
    padding: 12px 16px; text-align: center; min-width: 64px; width: 64px; flex-shrink: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; align-self: flex-start;
}
.event-date-box.past { background-color: var(--dark-soft); }
.event-date-box .event-day,
.event-date-box .edb-day {
    font-size: 1.6rem; font-weight: 700; line-height: 1; font-family: var(--font-serif);
}
.event-date-box .event-month,
.event-date-box .edb-month {
    font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; opacity: 0.85;
}
.event-date-box .edb-year { font-size: 10px; opacity: .7; margin-top: 2px; }
/* Event body / info */
.event-info h4,
.event-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.event-info .event-desc,
.event-body p { font-size: 13px; color: var(--dark-soft); line-height: 1.6; margin-bottom: 10px; }
.event-info .event-meta,
.event-body .event-meta { font-size: 12px; color: var(--dark-soft); display: flex; flex-wrap: wrap; gap: 14px; }
.event-info .event-meta span i,
.event-body .event-meta span i { color: var(--secondary); margin-right: 4px; }
.event-badge {
    display: inline-block; font-size: 10.5px; font-weight: 600; padding: 2px 10px;
    border-radius: 20px; margin-bottom: 8px; letter-spacing: 0.5px;
}
.event-badge.upcoming,
.event-badge.badge-upcoming { background-color: rgba(139,26,46,0.09); color: var(--primary); }
.event-badge.past,
.event-badge.badge-past { background-color: rgba(74,74,92,0.09); color: var(--dark-soft); }

/* ==============================
   EVENT DETAIL INFO BOX
   ============================== */
.event-info-box {
    background-color: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px;
}
.event-info-row { display: flex; align-items: center; gap: 12px; padding: 11px 20px; border-bottom: 1px solid var(--border); }
.event-info-row:last-child { border-bottom: none; }
.event-info-row .eir-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background-color: rgba(139,26,46,0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.event-info-row .eir-content strong {
    display: block; font-size: 12px; font-weight: 600; color: var(--dark-soft);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px;
}
.event-info-row .eir-content span { font-size: 14px; color: var(--dark); }

.map-placeholder {
    width: 100%; height: 240px; background: var(--light-alt);
    border-radius: var(--radius-lg); border: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 10px; color: var(--dark-soft);
}
.map-placeholder i { font-size: 36px; color: var(--primary); opacity: 0.4; }
.map-placeholder span { font-size: 13px; color: var(--dark-soft); }

/* ==============================
   PROJECT CARD
   ============================== */
.project-card {
    background-color: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s; height: 100%;
    display: flex; flex-direction: column; padding: 0;
}
.project-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.project-image {
    height: 200px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.project-card:hover .project-image img { transform: scale(1.05); }
.project-image-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px;
}
.project-image-placeholder i { font-size: 40px; opacity: 0.7; }
.project-image-placeholder span {
    font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; opacity: 0.75;
}
.project-image.ph-film { background: linear-gradient(135deg, #7B1526 0%, #A82840 100%); color: #fff; }
.project-image.ph-music { background: linear-gradient(135deg, #5C3D00 0%, #8a6e00 100%); color: #F5E199; }
.project-image.ph-world { background: linear-gradient(135deg, #1a3a5c 0%, #2a5f8a 100%); color: #b8d4f0; }
.project-image.ph-archive { background: linear-gradient(135deg, #2a1a40 0%, #4a2a70 100%); color: #d0b8f0; }

.project-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.project-badge {
    display: inline-block; font-size: 11px; font-weight: 600;
    padding: 3px 12px; border-radius: 20px; margin-bottom: 10px;
}
.project-badge.badge-active   { background-color: rgba(197,160,40,0.15); color: #8a6e00; }
.project-badge.badge-done,
.project-badge.badge-completed { background-color: rgba(22,120,60,0.1); color: #16783C; }
.project-badge.badge-ongoing  { background-color: rgba(139,26,46,0.08); color: var(--primary); }
.project-badge.badge-planned  { background-color: rgba(26,58,92,0.1); color: #1a3a5c; }
.project-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.project-card .project-desc { font-size: 13.5px; color: var(--dark-soft); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.project-card .project-year { font-size: 12px; color: var(--dark-soft); }
.project-card .project-year i { color: var(--secondary); margin-right: 4px; }

/* ==============================
   PROJECT INFO CARD (Proje Detay Sağ Kolon)
   ============================== */
.project-info-card {
    background-color: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 24px;
}
.project-info-card .pic-header { background-color: var(--primary); padding: 16px 20px; }
.project-info-card .pic-header h3 {
    font-size: 0.95rem; font-weight: 700; color: #fff;
    margin: 0; font-family: var(--font-serif);
}
.project-info-row {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px; border-bottom: 1px solid var(--border);
}
.project-info-row:last-child { border-bottom: none; }
.project-info-row .pir-label {
    font-size: 12px; font-weight: 600; color: var(--dark-soft);
    text-transform: uppercase; letter-spacing: 0.5px; min-width: 80px;
}
.project-info-row .pir-value { font-size: 13.5px; color: var(--dark); font-weight: 500; }

/* ==============================
   VIDEO CARD
   ============================== */
.video-card {
    background-color: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s; height: 100%; display: flex; flex-direction: column;
}
.video-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.video-thumb {
    position: relative; height: 180px; overflow: hidden;
    background: linear-gradient(135deg, #3a1020 0%, #5a1a30 100%);
    display: flex; align-items: center; justify-content: center;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.play-button {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 62px; height: 62px; background-color: rgba(255,255,255,0.95); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 24px; transition: background-color 0.2s, transform 0.2s;
    z-index: 2; padding-left: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.video-card:hover .play-button {
    background-color: var(--primary); color: var(--white);
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 20px rgba(139,26,46,0.5);
}
.video-duration {
    position: absolute; bottom: 8px; right: 10px;
    background-color: rgba(0,0,0,0.7); color: #fff; font-size: 11px; font-weight: 600;
    padding: 2px 7px; border-radius: 3px; z-index: 2;
}
.video-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.video-body .video-meta {
    font-size: 11.5px; color: var(--dark-soft); margin-bottom: 8px;
    display: flex; gap: 12px; flex-wrap: wrap;
}
.video-body .video-meta i { color: var(--secondary); margin-right: 3px; }
.video-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); line-height: 1.45; margin-bottom: 8px; flex: 1; }
.video-body .video-desc { font-size: 12.5px; color: var(--dark-soft); line-height: 1.6; }

/* Video Sidebar List */
.video-sidebar-item {
    display: flex; gap: 12px; padding: 12px 0;
    border-bottom: 1px solid var(--border); text-decoration: none;
}
.video-sidebar-item:last-child { border-bottom: none; }
.video-sidebar-item .vsi-thumb {
    width: 80px; height: 55px; border-radius: 6px; overflow: hidden;
    flex-shrink: 0; position: relative; background: var(--dark);
}
.video-sidebar-item .vsi-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-sidebar-item .vsi-thumb-ph {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #3a1020, #5a1a30);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); font-size: 18px;
}
.video-sidebar-item .vsi-content h4 {
    font-size: 13px; font-weight: 600; color: var(--dark);
    line-height: 1.4; margin-bottom: 4px; font-family: var(--font-sans); transition: color 0.2s;
}
.video-sidebar-item:hover .vsi-content h4 { color: var(--primary); }
.video-sidebar-item .vsi-date { font-size: 11.5px; color: var(--dark-soft); }

/* ==============================
   GALLERY
   ============================== */
.gallery-item {
    border-radius: var(--radius); overflow: hidden; position: relative;
    aspect-ratio: 4/3; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
    position: absolute; inset: 0; background: rgba(139, 26, 46, 0.55);
    opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: var(--white); text-align: center; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i { font-size: 24px; margin-bottom: 8px; }
.gallery-item .gallery-overlay span { font-size: 13px; font-weight: 600; }

/* ==============================
   ALBUM CARD (Galeriler listeleme)
   ============================== */
.album-card {
    background-color: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s; height: 100%; display: flex; flex-direction: column;
}
.album-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.album-thumb { position: relative; height: 210px; overflow: hidden; background: var(--light-alt); }
.album-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.album-card:hover .album-thumb img { transform: scale(1.06); }
.album-thumb .album-thumb-ph {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #5a1a30 0%, #8B1A2E 100%);
    color: rgba(255,255,255,0.35); font-size: 52px;
}
.album-thumb .album-count-badge {
    position: absolute; bottom: 10px; right: 10px;
    background-color: rgba(0,0,0,0.65); color: #fff;
    font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 20px; z-index: 2;
}
.album-thumb .album-overlay {
    position: absolute; inset: 0; background: rgba(139,26,46,0.55); opacity: 0;
    transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; z-index: 1;
}
.album-card:hover .album-thumb .album-overlay { opacity: 1; }
.album-thumb .album-overlay span {
    font-size: 13px; font-weight: 600; color: #fff;
    background: rgba(0,0,0,0.35); padding: 8px 18px;
    border-radius: 30px; border: 1px solid rgba(255,255,255,0.3);
}
.album-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.album-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.4; }
.album-body .album-date { font-size: 12px; color: var(--dark-soft); margin-bottom: 14px; }
.album-body .album-date i { color: var(--secondary); margin-right: 4px; }

/* ==============================
   STATS
   ============================== */
.stats-section {
    background-color: var(--primary); padding: 70px 0; position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; top: -80px; left: -80px;
    width: 260px; height: 260px; border-radius: 50%;
    background-color: rgba(255,255,255,0.04); pointer-events: none;
}
.stats-section::after {
    content: ''; position: absolute; bottom: -80px; right: -80px;
    width: 260px; height: 260px; border-radius: 50%;
    background-color: rgba(255,255,255,0.04); pointer-events: none;
}
.stat-item { text-align: center; color: var(--white); padding: 20px; }
.stat-item .stat-icon { font-size: 28px; color: var(--secondary); margin-bottom: 12px; }
.stat-item .stat-number { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-item .stat-label { font-size: 13px; color: rgba(255,255,255,0.75); letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 80px; background-color: rgba(255,255,255,0.15); }

/* ==============================
   BAŞKANIN MESAJI
   ============================== */
.presidents-msg-section {
    background-color: #2A0A12;
    background-image: linear-gradient(135deg, #2A0A12 0%, #3D1020 50%, #2A0A12 100%);
    padding: 80px 0;
}
.president-photo-wrap {
    height: 100%; display: flex; flex-direction: column;
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.president-photo-placeholder {
    flex: 1; min-height: 320px;
    background: linear-gradient(145deg, var(--light-alt) 0%, #e8dfd0 100%);
    display: flex; align-items: center; justify-content: center;
}
.president-photo-placeholder i { font-size: 80px; color: var(--border); }
.president-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.president-name-box {
    background-color: var(--primary); padding: 18px 22px; display: flex; flex-direction: column; gap: 4px;
}
.president-name-box strong { font-family: var(--font-serif); font-size: 1.05rem; color: var(--white); font-weight: 600; }
.president-name-box span { font-size: 12px; color: rgba(255,255,255,0.75); }
.president-msg-body { height: 100%; display: flex; flex-direction: column; justify-content: center; }
.presidents-msg-section .section-label { color: var(--secondary); border-color: var(--secondary); }
.presidents-msg-section .section-title { color: var(--white); }
.president-msg-quote-icon { font-size: 2.2rem; color: var(--secondary); margin-bottom: 18px; line-height: 1; }
.president-msg-text { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.85; margin-bottom: 18px; }
.president-signature { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.president-signature-line { width: 60px; height: 3px; background-color: var(--secondary); border-radius: 2px; margin-bottom: 10px; }
.president-signature strong { font-family: var(--font-serif); font-size: 1rem; color: var(--white); font-weight: 700; }
.president-signature span { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ==============================
   FEATURE CARD (Hakkımızda)
   ============================== */
.feature-card {
    background-color: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 30px 24px; text-align: center;
    box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s; height: 100%;
}
.feature-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.feature-card .feature-icon-wrap {
    width: 60px; height: 60px; border-radius: 50%; background-color: var(--light);
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin: 0 auto 16px; border: 2px solid var(--border); transition: background-color 0.2s, color 0.2s;
}
.feature-card:hover .feature-icon-wrap { background-color: var(--primary); color: var(--white); }
.feature-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-card p { font-size: 13.5px; color: var(--dark-soft); line-height: 1.7; margin: 0; }

/* ==============================
   İLETİŞİM FORMU & KARTLARI
   ============================== */
.iletisim-section { background-color: var(--white); padding: 70px 0; }

.contact-info-card {
    background-color: var(--light); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px; height: 100%;
}
.contact-info-card h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--dark);
    margin-bottom: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--secondary);
}
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item .ci-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background-color: rgba(139,26,46,0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.contact-item .ci-content strong {
    display: block; font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--dark-soft); margin-bottom: 3px;
}
.contact-item .ci-content span,
.contact-item .ci-content a { font-size: 14.5px; color: var(--dark); text-decoration: none; line-height: 1.6; }
.contact-item .ci-content a:hover { color: var(--primary); }

.contact-form-card {
    background-color: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
}
.contact-form-card h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--dark);
    margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--secondary);
}
.form-label-custom { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; display: block; }
.form-control-custom {
    border: 1.5px solid var(--border); border-radius: 6px; padding: 10px 14px;
    font-size: 14px; color: var(--dark); background-color: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s; width: 100%; outline: none;
    font-family: var(--font-sans);
}
.form-control-custom:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,26,46,0.1); }
.form-control-custom::placeholder { color: rgba(74,74,92,0.45); font-size: 13.5px; }
textarea.form-control-custom { resize: vertical; min-height: 130px; }
select.form-control-custom { appearance: none; cursor: pointer; }

/* ==============================
   FOOTER
   ============================== */
.site-footer { background-color: var(--dark); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.site-footer .footer-logo-img {
    height: 56px; width: auto; object-fit: contain;
    filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 14px;
}
.site-footer .footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.site-footer .footer-social { display: flex; gap: 10px; }
.site-footer .footer-social a {
    width: 36px; height: 36px; border-radius: 6px;
    background-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: background-color 0.2s, color 0.2s;
}
.site-footer .footer-social a:hover { background-color: var(--primary); color: var(--white); }
.site-footer .footer-heading {
    font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--white);
    margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 9px; }
.site-footer .footer-links a {
    color: rgba(255,255,255,0.6); font-size: 13.5px; transition: color 0.2s;
    display: flex; align-items: center; gap: 6px;
}
.site-footer .footer-links a::before { content: '›'; color: var(--secondary); font-size: 16px; }
.site-footer .footer-links a:hover { color: var(--white); }
.site-footer .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.site-footer .footer-contact-item .fci-icon {
    width: 32px; height: 32px; border-radius: 6px;
    background-color: rgba(255,255,255,0.07); color: var(--secondary);
    display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0;
}
.site-footer .footer-contact-item .fci-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.site-footer .footer-contact-item .fci-text a { color: rgba(255,255,255,0.6); }
.site-footer .footer-contact-item .fci-text a:hover { color: var(--white); }
.site-footer .footer-bottom {
    background-color: rgba(0,0,0,0.25); margin-top: 40px; padding: 16px 0;
    text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.4);
}
.site-footer .footer-bottom a { color: rgba(255,255,255,0.5); }
.site-footer .footer-bottom a:hover { color: var(--secondary); }

/* ==============================
   PARTNERS
   ============================== */
.partners-section { background-color: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; }
.partners-label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--dark-soft); margin-bottom: 28px; }
.partners-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 100px; }
.partner-item img { height: 150px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: filter 0.3s, opacity 0.3s; }
.partner-item img:hover { filter: grayscale(0%); opacity: 1; }

/* ==============================
   MEDIA QUERIES
   ============================== */
@media (max-width: 991px) {
    .site-navbar .navbar-nav .nav-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .site-navbar .navbar-nav .nav-item:first-child { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
    .stat-divider { display: none; }
    .page-hero h1 { font-size: 1.85rem; }
    .event-card { flex-direction: column; gap: 14px; }
}

@media (max-width: 767px) {
    .site-header { padding: 14px 0 16px; }
    .site-header .logo-area { gap: 10px; }
    .site-header .logo-text h1 { font-size: 1.15rem; line-height: 1.3; }
    .site-header .header-social { display: none; }
    .section-title { font-size: 1.6rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .page-hero { padding: 38px 0 32px; }
    .content-section,
    .iletisim-section { padding: 50px 0; }
    .stats-section { padding: 50px 0; }
    .stat-item .stat-number { font-size: 2.2rem; }
    .event-date-box { width: 64px; }
}

@media (max-width: 575px) {
    .page-hero h1 { font-size: 1.4rem; }
    .site-footer { padding-top: 45px; }
    .contact-form-card { padding: 22px 16px; }
    .contact-info-card { padding: 22px 16px; }
}

/* ==============================
   EKSİK / EKLENEN STILLER
   ============================== */

/* project-card body paragraf & link */
.project-body p { font-size: 13.5px; color: var(--dark-soft); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.project-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--primary);
    text-decoration: none; margin-top: auto; transition: gap 0.2s;
}
.project-link:hover { color: var(--accent); gap: 10px; }
.project-link i { font-size: 11px; }
.project-card-meta {
    display: flex; flex-wrap: wrap; gap: 8px 14px;
    margin-bottom: 14px; color: var(--dark-soft); font-size: 12px;
}
.project-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.project-card-meta i { color: var(--secondary); font-size: 11px; }
.project-badge-inline {
    margin-bottom: 0; font-size: 11px; padding: 4px 10px;
}
.project-detail-block {
    margin-top: 48px;
}
.project-detail-title {
    font-family: var(--font-serif); color: var(--dark);
    font-size: 1.4rem; font-weight: 600; margin-bottom: 20px;
}
.project-gallery-button {
    display: block; width: 100%; border: 0; padding: 0;
    background: transparent; cursor: pointer;
}
.project-gallery-button img {
    width: 100%; height: 100%; object-fit: cover;
}
.project-video-list {
    display: flex; flex-direction: column; gap: 18px;
}
.project-video-search-item {
    display: grid; grid-template-columns: 220px 1fr; gap: 18px;
    color: inherit; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.project-video-search-item:last-child {
    border-bottom: 0; padding-bottom: 0;
}
.project-video-thumb {
    position: relative; display: block; aspect-ratio: 16 / 9;
    overflow: hidden; border-radius: 8px; background: #111;
}
.project-video-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.project-video-play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    color: #fff; background: rgba(0,0,0,.18); transition: background-color .2s;
}
.project-video-play i {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.94); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; padding-left: 3px;
}
.project-video-search-item:hover .project-video-play {
    background: rgba(139,26,46,.22);
}
.project-video-content {
    display: flex; flex-direction: column; gap: 7px; min-width: 0;
}
.project-video-title {
    color: var(--dark); font-size: 1rem; line-height: 1.45;
    font-weight: 700; font-family: var(--font-sans);
}
.project-video-search-item:hover .project-video-title {
    color: var(--primary);
}
.project-video-meta {
    color: var(--dark-soft); font-size: 12px; line-height: 1.5;
}
.project-video-meta i {
    color: #ff0000; margin-right: 5px;
}
.project-video-desc {
    color: var(--dark-soft); font-size: 13px; line-height: 1.65;
}
.project-photo-modal {
    background: #111; border: 0; border-radius: 12px; overflow: hidden;
}
.project-photo-modal .modal-header {
    border: 0; padding: 12px 16px;
}
#projectPhotoModalCounter {
    color: rgba(255,255,255,.68); font-size: 13px;
}
.project-photo-modal .modal-body {
    min-height: 340px; padding: 0; display: flex;
    align-items: center; justify-content: center; position: relative;
}
.project-photo-display {
    width: 100%; padding: 20px 60px; text-align: center;
}
.project-photo-display img {
    max-width: 100%; max-height: 70vh; border-radius: 8px; object-fit: contain;
}
.project-photo-nav {
    position: absolute; z-index: 10; width: 40px; height: 40px;
    border-radius: 50%; background: rgba(255,255,255,.15);
    border: 0; color: #fff; display: flex; align-items: center;
    justify-content: center; transition: background-color .2s;
}
.project-photo-nav:hover { background: rgba(255,255,255,.3); }
.project-photo-prev { left: 12px; }
.project-photo-next { right: 12px; }

@media (max-width: 767px) {
    .project-video-search-item {
        grid-template-columns: 1fr; gap: 10px;
    }
    .project-photo-display {
        padding: 18px 52px;
    }
}

/* project-info-card header/body aliases */
.project-info-header { background-color: var(--primary); padding: 16px 20px; }
.project-info-header h3 {
    font-size: 0.95rem; font-weight: 700; color: #fff; margin: 0; font-family: var(--font-serif);
}
.project-info-body { padding: 0; }

/* pir-label / pir-value inside project-info-row */
.pir-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--dark-soft);
    text-transform: uppercase; letter-spacing: 0.5px; min-width: 90px;
}
.pir-label i { color: var(--secondary); }
.pir-value { font-size: 13.5px; color: var(--dark); font-weight: 500; }

/* event-info-box header/body aliases */
.event-info-header { background-color: var(--primary); padding: 14px 20px; }
.event-info-header h3 { font-size: 0.9rem; font-weight: 700; color: #fff; margin: 0; font-family: var(--font-serif); }
.event-info-body { padding: 0; }
.event-info-row .eir-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--dark-soft);
    text-transform: uppercase; letter-spacing: 0.4px; min-width: 90px; flex-shrink: 0;
}
.event-info-row .eir-label i { color: var(--secondary); font-size: 13px; }
.event-info-row .eir-value { font-size: 13.5px; color: var(--dark); font-weight: 500; line-height: 1.5; }

/* video-card thumbnail icon (no img) */
.video-thumb i { font-size: 2.5rem; color: rgba(255,255,255,.25); }
.video-thumb-link { display: block; text-decoration: none; }
.video-category {
    display: inline-block; font-size: 10.5px; font-weight: 600; padding: 2px 10px;
    border-radius: 20px; background-color: rgba(139,26,46,0.09); color: var(--primary);
    margin-bottom: 8px; letter-spacing: 0.4px;
}
/* vsi-play overlay */
.vsi-play {
    position: absolute; inset: 0; background: rgba(0,0,0,.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .2s;
}
.video-sidebar-item:hover .vsi-play { opacity: 1; }
.vsi-play i { color: #fff; font-size: 16px; }
/* vsi-thumb icon */
.vsi-thumb i { font-size: 1.2rem; color: rgba(255,255,255,.3); }
/* vsi-content span */
.vsi-content { display: flex; flex-direction: column; justify-content: center; }
.vsi-content span { font-size: 11.5px; color: var(--dark-soft); }

/* album-card thumbnail placeholders */
.album-thumb.ph-1 { background: linear-gradient(135deg,#5a1a30,#8B1A2E); display:flex; align-items:center; justify-content:center; }
.album-thumb.ph-2 { background: linear-gradient(135deg,#1a3a5a,#2a5f8a); display:flex; align-items:center; justify-content:center; }
.album-thumb.ph-3 { background: linear-gradient(135deg,#1a5a3a,#2a8a5a); display:flex; align-items:center; justify-content:center; }
.album-thumb.ph-4 { background: linear-gradient(135deg,#5a4a1a,#8a7a2a); display:flex; align-items:center; justify-content:center; }
.album-thumb.ph-5 { background: linear-gradient(135deg,#3a1a5a,#5a2a8a); display:flex; align-items:center; justify-content:center; }
.album-thumb.ph-6 { background: linear-gradient(135deg,#3a3a1a,#6a6a2a); display:flex; align-items:center; justify-content:center; }
.album-thumb i { font-size: 3.5rem; color: rgba(255,255,255,.2); }
.album-overlay { display:flex; align-items:center; justify-content:center; }
.album-overlay i { font-size: 2.5rem; color: rgba(255,255,255,.9); }

/* contact-info-card dark variant (iletisim.php) */
.contact-info-card.dark {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none; color: #fff;
}
.contact-info-card h2 {
    font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--dark);
    margin-bottom: 8px;
}
.contact-info-card p { font-size: 14px; color: var(--dark-soft); margin-bottom: 28px; }
.contact-info-card .contact-item .contact-item-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background-color: rgba(255,255,255,.15); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.contact-info-card .contact-item .contact-item-content strong {
    display: block; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: rgba(255,255,255,.65); margin-bottom: 3px;
}
.contact-info-card .contact-item .contact-item-content span,
.contact-info-card .contact-item .contact-item-content a {
    font-size: 14px; color: #fff; text-decoration: none; line-height: 1.6;
}
.contact-info-card .contact-item { margin-bottom: 20px; }

/* contact-form-card h2 */
.contact-form-card h2 {
    font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.contact-form-card p { font-size: 14px; color: var(--dark-soft); margin-bottom: 24px; }

/* iletisim-section contact-info-card dark */
.iletisim-section .contact-info-card {
    background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
    border: none; color: #fff; height: 100%;
}
.iletisim-section .contact-info-card h2 { color: #fff; }
.iletisim-section .contact-info-card p { color: rgba(255,255,255,.75); }

/* president-photo img */
.president-photo {
    width: 100%; max-width: 260px; height: auto; border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,.35); display: block; margin: 0 auto;
    object-fit: cover; aspect-ratio: 0.81;
}
/* president-name-box dark */
.president-name-box h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0 0 4px; }
.president-name-box span { font-size: 12px; color: rgba(255,255,255,.7); }

/* president-msg-body */
.pm-quote-icon { font-size: 2rem; color: var(--secondary); margin-bottom: 18px; }
.president-msg-body p { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.85; margin-bottom: 14px; }
.pm-signature { margin-top: 16px; }
.pm-sig-line { width: 60px; height: 3px; background: var(--secondary); border-radius: 2px; margin-bottom: 10px; }
.pm-signature strong { display: block; font-family: var(--font-serif); font-size: 1rem; color: #fff; font-weight: 700; }
.pm-signature span { font-size: 12px; color: rgba(255,255,255,.6); }

/* feature-card .fc-icon */
.fc-icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; margin: 0 0 16px;
}
.feature-card { text-align: left; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-card p { font-size: 13.5px; color: var(--dark-soft); line-height: 1.7; margin: 0; }

/* sidebar-news-item (sni) */
.sidebar-news-item {
    display: flex; gap: 12px; padding: 12px 0;
    border-bottom: 1px solid var(--border); text-decoration: none;
}
.sidebar-news-item:last-child { border-bottom: none; }
.sni-img-ph {
    width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); font-size: 18px;
}
.sni-content { display: flex; flex-direction: column; justify-content: center; }
.sni-content h4 {
    font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.4;
    margin-bottom: 4px; font-family: var(--font-sans); transition: color .2s;
}
.sidebar-news-item:hover .sni-content h4 { color: var(--primary); }
.sni-date { font-size: 11.5px; color: var(--dark-soft); }

/* stat-item class aliases */
.stat-item .stat-number { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; line-height: 1; display: block; margin-bottom: 8px; }
.stat-item .stat-label { font-size: 13px; color: rgba(255,255,255,.75); display: block; }

/* ==============================
   ÜYELİK BAŞVURU FORMU
   ============================== */

/* Sayfa bölümü */
.uyelik-section {
    background-color: var(--light);
    padding: 60px 0 80px;
}

/* ── Kart ── */
.uyelik-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    overflow: hidden;
}
.uyelik-card-kvkk { border-top: 3px solid var(--primary); }

.uyelik-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}
.uyelik-card-header i {
    color: var(--primary);
    font-size: 15px;
}

.uyelik-card-body { padding: 28px 24px; }

/* ── Etiket ── */
.uyelik-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
}
.zorunlu { color: var(--primary); margin-left: 2px; }
.opsiyonel {
    font-size: 11px;
    font-weight: 400;
    color: var(--dark-soft);
    margin-left: 4px;
}
.uyelik-hint {
    display: block;
    font-size: 11.5px;
    color: var(--dark-soft);
    margin-top: 5px;
}

/* ── Hata / uyarı kutusu ── */
.uyelik-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 14px;
}
.uyelik-alert i { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.uyelik-alert ul { margin: 6px 0 0; padding-left: 18px; }
.uyelik-alert li { margin-bottom: 3px; }
.uyelik-alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ── Başarı kutusu ── */
.uyelik-success-box {
    text-align: center;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    box-shadow: var(--shadow);
}
.uyelik-success-box .usb-icon {
    font-size: 4rem;
    color: #16a34a;
    margin-bottom: 20px;
    line-height: 1;
}
.uyelik-success-box h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}
.uyelik-success-box p {
    font-size: 15px;
    color: var(--dark-soft);
    max-width: 480px;
    margin: 0 auto 20px;
    line-height: 1.75;
}

/* ── Fotoğraf yükleme alanı ── */
.foto-upload-area {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background-color: var(--light);
    transition: border-color 0.2s, background-color 0.2s;
    cursor: pointer;
}
.foto-upload-area:hover,
.foto-upload-area.drag-over {
    border-color: var(--primary);
    background-color: rgba(139,26,46,0.04);
}
.foto-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.foto-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    cursor: pointer;
    gap: 8px;
    pointer-events: none;
}
.foto-upload-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.6;
}
.foto-upload-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-soft);
}
.foto-upload-hint {
    font-size: 12px;
    color: var(--dark-soft);
    opacity: 0.7;
}

/* Önizleme */
.foto-preview-wrap {
    position: relative;
    width: 130px;
    margin-top: 14px;
}
.foto-preview-wrap img {
    width: 130px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    display: block;
}
.foto-remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    border: none;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.foto-remove-btn:hover { background-color: var(--accent); }

/* Fotoğraf yönerge kutusu */
.foto-info-box {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
}
.foto-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.foto-info-box li {
    font-size: 13px;
    color: var(--dark-soft);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}
.foto-info-box li:last-child { border-bottom: none; }
.foto-info-box li i { color: #16a34a; font-size: 11px; flex-shrink: 0; }

/* ── KVKK ── */
.kvkk-box {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 22px;
}
.kvkk-box h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    font-family: var(--font-serif);
}
.kvkk-box h3 i { color: var(--primary); }
.kvkk-scroll {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.kvkk-scroll::-webkit-scrollbar { width: 5px; }
.kvkk-scroll::-webkit-scrollbar-track { background: transparent; }
.kvkk-scroll::-webkit-scrollbar-thumb { background-color: var(--border); border-radius: 3px; }
.kvkk-scroll p {
    font-size: 13px;
    color: var(--dark-soft);
    line-height: 1.7;
    margin-bottom: 12px;
}
.kvkk-scroll p:last-child { margin-bottom: 0; }
.kvkk-scroll a { color: var(--primary); text-decoration: underline; }

/* KVKK onay checkbox */
.kvkk-check-row { margin-bottom: 6px; }
.kvkk-check-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}
.kvkk-check-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.kvkk-check-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background-color 0.2s;
    margin-top: 2px;
}
.kvkk-check-box::after {
    content: '';
    display: block;
    width: 6px;
    height: 11px;
    border: 2px solid transparent;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -2px);
    transition: border-color 0.15s;
}
.kvkk-check-label input:checked ~ .kvkk-check-box {
    background-color: var(--primary);
    border-color: var(--primary);
}
.kvkk-check-label input:checked ~ .kvkk-check-box::after {
    border-color: #fff;
}
.kvkk-check-label:hover .kvkk-check-box { border-color: var(--primary); }
.kvkk-check-text {
    font-size: 13.5px;
    color: var(--dark-soft);
    line-height: 1.65;
}

/* ── Gönder butonu ── */
.uyelik-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(139,26,46,0.25);
    width: 100%;
}
.uyelik-submit-btn:hover {
    background-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139,26,46,0.3);
}
.uyelik-submit-btn:active { transform: translateY(0); }

.uyelik-submit-note {
    font-size: 12px;
    color: var(--dark-soft);
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
}
.uyelik-submit-note i { color: #16a34a; }

/* ── Responsive ── */
@media (max-width: 767px) {
    .uyelik-section { padding: 40px 0 60px; }
    .uyelik-card-body { padding: 20px 16px; }
    .uyelik-card-header { padding: 12px 16px; }
    .uyelik-success-box { padding: 40px 20px; }
    .kvkk-scroll { max-height: 160px; }
}
@media (max-width: 575px) {
    .uyelik-submit-btn { padding: 13px 24px; font-size: 14px; }
}

/* ==============================
   NEWS TICKER
   ============================== */
.news-ticker {
    background-color: var(--light-alt);
    border-bottom: 1px solid var(--border);
    padding: 9px 0;
    overflow: hidden;
}
.news-ticker .ticker-label {
    background-color: var(--primary);
    color: var(--white);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 14px;
    white-space: nowrap;
    border-radius: 3px;
    flex-shrink: 0;
}
.news-ticker .ticker-label i { margin-right: 5px; }
.news-ticker .ticker-wrapper { overflow: hidden; flex: 1; }
.news-ticker .ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker-scroll 28s linear infinite;
    white-space: nowrap;
}
.news-ticker .ticker-track:hover { animation-play-state: paused; }
.news-ticker .ticker-item {
    font-size: 13px;
    color: var(--dark);
    padding: 0 40px;
    position: relative;
}
.news-ticker .ticker-item::after {
    content: '•';
    color: var(--secondary);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==============================
   HERO SLIDER
   ============================== */
.hero-slider-section { background-color: var(--light); padding: 40px 0; }
.hero-slider {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44,44,62,0.18);
}
.hero-slider .carousel-item {
    height: 500px;
    position: relative;
    overflow: hidden;
}
.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center center; background-repeat: no-repeat;
    z-index: 0; transform: scale(1); transition: transform 8s ease;
}
.carousel-item.active .hero-slide-bg { transform: scale(1.04); }
.hero-slide-overlay { position: absolute; inset: 0; z-index: 1; }
.slide-1 .hero-slide-overlay { background: linear-gradient(120deg, rgba(61,10,20,0.82) 0%, rgba(107,19,34,0.62) 55%, rgba(139,26,46,0.30) 100%); }
.slide-2 .hero-slide-overlay { background: linear-gradient(120deg, rgba(30,14,0,0.85) 0%, rgba(90,50,0,0.62) 55%, rgba(138,83,0,0.30) 100%); }
.slide-3 .hero-slide-overlay { background: linear-gradient(120deg, rgba(8,14,28,0.88) 0%, rgba(18,36,57,0.68) 55%, rgba(26,50,84,0.35) 100%); }
.hero-slide-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; align-items: center; padding: 60px 48px;
}
.hero-slide-overlay::after {
    content: ''; position: absolute; top: -20%; right: -5%;
    width: 380px; height: 380px; border-radius: 50%;
    background: rgba(255,255,255,0.03); pointer-events: none;
}
.hero-slide-eyebrow {
    font-size: 11.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--secondary); margin-bottom: 14px; display: block;
}
.hero-slide-title {
    font-size: 2.6rem; font-weight: 700; color: #fff;
    line-height: 1.3; margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-slide-title span { color: var(--secondary); }
.hero-slide-lead { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 30px; }
.hero-slide-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-slider .btn-primary-custom { background-color: #fff; color: var(--primary); border-color: #fff; }
.hero-slider .btn-primary-custom:hover { background-color: var(--secondary); color: #2C2C3E; border-color: var(--secondary); }
.hero-slider .btn-outline-custom { border-color: rgba(255,255,255,0.75); color: #fff; }
.hero-slider .btn-outline-custom:hover { background-color: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 44px; height: 44px; background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
    top: 50%; transform: translateY(-50%); opacity: 0.9; bottom: auto;
    z-index: 99999;
}
.hero-slider .carousel-control-prev { left: 16px; }
.hero-slider .carousel-control-next { right: 16px; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { opacity: 1; background-color: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.6); }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon { width: 18px; height: 18px; }
.hero-slider .carousel-indicators { bottom: 14px; }
.hero-slider .carousel-indicators [data-bs-target] {
    width: 28px; height: 4px; border-radius: 2px;
    background-color: rgba(255,255,255,0.35); border: none; margin: 0 3px;
    transition: background-color 0.3s, width 0.3s;
}
.hero-slider .carousel-indicators .active { background-color: #fff; width: 44px; }
.hero-deco-card {
    background: rgba(255,255,255,0.09); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg); padding: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.18); position: relative;
}
.hero-deco-card .hero-deco-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background-color: var(--primary); color: var(--white);
    font-size: 11px; font-weight: 600; letter-spacing: 1px;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.hero-deco-card .hero-deco-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.hero-deco-feature { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.hero-deco-feature:last-of-type { margin-bottom: 0; }
.hero-deco-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background-color: rgba(255,255,255,0.12); color: var(--secondary);
    display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.hero-deco-text strong { display: block; font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.hero-deco-text span { font-size: 12px; color: rgba(255,255,255,0.68); }
.hero-deco-divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 14px 0; }
.hero-deco-meta { font-size: 12px; color: rgba(255,255,255,0.55); }
.hero-deco-meta i { color: var(--secondary); margin-right: 4px; }

/* ==============================
   QUICK FEATURE ROW (Slider altı)
   ============================== */
.quick-feature-row { background-color: var(--white); border-bottom: 1px solid var(--border); padding: 0; }
.quick-feature-item {
    display: flex; align-items: center; gap: 14px; padding: 22px 28px;
    border-right: 1px solid var(--border); transition: background-color 0.2s; height: 100%;
}
.quick-feature-item:last-child { border-right: none; }
.quick-feature-item:hover { background-color: var(--light); }
.quick-feature-item .qf-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background-color: rgba(139,26,46,0.07); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.quick-feature-item .qf-text strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--dark); line-height: 1.3; }
.quick-feature-item .qf-text span { font-size: 12px; color: var(--dark-soft); }

/* ==============================
   SECTION CONTAINERS (Anasayfa)
   ============================== */
.video-gallery-section { background-color: var(--light); padding: 80px 0; }
.about-section { background-color: var(--white); padding: 80px 0; }
.about-section .about-text { font-size: 15.5px; color: var(--dark-soft); line-height: 1.85; }

/* ==============================
   JOIN CTA BAR
   ============================== */
.join-cta-bar {
    background: linear-gradient(100deg, var(--primary) 0%, var(--accent) 60%, #5A0F1E 100%);
    padding: 36px 0;
    position: relative;
    overflow: hidden;
}
.join-cta-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(197,160,40,0.12) 0%, transparent 55%),
        radial-gradient(circle at 90% 50%, rgba(197,160,40,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.join-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.join-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 auto;
}
.join-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary);
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}
.join-cta-text h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px;
    line-height: 1.25;
}
.join-cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.5;
}
.join-cta-right { flex-shrink: 0; }
.btn-join {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--secondary);
    color: var(--dark);
    border: 2px solid var(--secondary);
    padding: 11px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.btn-join:hover {
    background-color: #d4ad30;
    border-color: #d4ad30;
    color: var(--dark);
    box-shadow: 0 6px 22px rgba(0,0,0,0.25);
    transform: translateY(-1px);
}
@media (max-width: 767px) {
    .join-cta-bar { padding: 28px 0; }
    .join-cta-inner { flex-direction: column; text-align: center; align-items: center; }
    .join-cta-left { flex-direction: column; gap: 12px; }
    .join-cta-icon { width: 48px; height: 48px; font-size: 18px; }
    .join-cta-text h3 { font-size: 1.2rem; }
}

.about-section .about-quote {
    border-left: 4px solid var(--secondary); padding: 12px 20px;
    background-color: var(--light); border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 24px; font-style: italic; color: var(--dark); font-size: 14.5px;
}
.news-section { background-color: var(--light); padding: 80px 0; }
.events-section { background-color: var(--white); padding: 80px 0; }
.projects-section { background-color: var(--light); padding: 80px 0; }
.gallery-section { background-color: var(--white); padding: 80px 0; }

/* ==============================
   GALLERY PLACEHOLDER
   ============================== */
.gallery-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--light-alt) 0%, var(--border) 100%);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 8px; color: var(--dark-soft);
}
.gallery-placeholder i { font-size: 28px; color: var(--primary); opacity: 0.5; }
.gallery-placeholder span {
    font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    opacity: 0.65; text-align: center; padding: 0 8px;
}

/* ==============================
   CONTACT CTA
   ============================== */
.contact-cta-section { background-color: var(--light); padding: 80px 0; }
.contact-cta-section .cta-box {
    background-color: var(--white); border-radius: var(--radius-lg);
    padding: 50px 40px; box-shadow: var(--shadow);
    border: 1px solid var(--border); text-align: center;
}
.contact-cta-section .cta-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background-color: rgba(139,26,46,0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 20px;
}
.contact-cta-section h2 { font-size: 1.75rem; margin-bottom: 14px; }
.contact-cta-section .cta-desc { color: var(--dark-soft); max-width: 500px; margin: 0 auto 30px; font-size: 15px; }
.contact-cta-section .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: 6px; font-size: 14px; font-weight: 500;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s; border: 2px solid transparent;
}
.btn-cta.btn-cta-phone { background-color: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-cta.btn-cta-phone:hover { background-color: var(--accent); border-color: var(--accent); color: var(--white); }
.btn-cta.btn-cta-whatsapp { background-color: #25D366; color: var(--white); border-color: #25D366; }
.btn-cta.btn-cta-whatsapp:hover { background-color: #1da851; border-color: #1da851; color: var(--white); }
.btn-cta.btn-cta-email { background-color: transparent; color: var(--primary); border-color: var(--primary); }
.btn-cta.btn-cta-email:hover { background-color: var(--primary); color: var(--white); }

/* ==============================
   MEDIA QUERIES – ANASAYFA ÖZGÜ
   ============================== */
@media (max-width: 991px) {
    .hero-slider .carousel-item { height: 420px; }
    .hero-slide-content { padding: 50px 36px; }
    .hero-slide-title { font-size: 1.85rem; }
    .hero-deco-card { margin-top: 32px; }
    .quick-feature-item { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 767px) {
    .hero-slide-title { font-size: 1.6rem; }
    .about-section,
    .news-section,
    .events-section,
    .projects-section,
    .gallery-section,
    .video-gallery-section,
    .contact-cta-section { padding: 55px 0; }
    .contact-cta-section .cta-box { padding: 36px 20px; }
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next { display: none; }
}

@media (max-width: 575px) {
    .hero-slider .carousel-item { height: 360px; }
    .hero-slide-content { padding: 36px 24px; }
    .hero-slide-title { font-size: 1.4rem; }
    .hero-slide-lead { font-size: 13.5px; }
    .hero-slide-buttons { flex-direction: column; }
    .hero-slide-buttons a { text-align: center; }
}
