/* Static-design vision & mission page */
.vision-mission-page .page-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1920&auto=format&fit=crop') center/cover;
}
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.vm-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 56px 48px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
}
.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}
.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.12);
}
.vm-icon {
    width: 90px;
    height: 90px;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--gold-dark);
    font-size: 36px;
    transition: all 0.4s;
}
.vm-card:hover .vm-icon {
    background: var(--gold);
    color: var(--navy-deep);
    transform: rotate(8deg);
}
.vm-label {
    font-size: 12px;
    color: var(--gold-dark);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}
.vm-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 0;
}
.vm-text p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
}
.vm-text p:last-child {
    margin-bottom: 0;
}
.goals-section {
    background: var(--paper);
}
.vm-section-head {
    text-align: center;
    margin-bottom: 64px;
}
.vm-section-eyebrow {
    color: var(--gold-dark);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}
.vm-section-eyebrow::before,
.vm-section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.vm-section-eyebrow::before { left: 0; }
.vm-section-eyebrow::after { right: 0; }
.vm-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: var(--navy-deep);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.15;
}
.vm-section-head p {
    color: var(--muted);
    font-size: 16px;
    max-width: 620px;
    margin: 16px auto 0;
    line-height: 1.7;
}
.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.goal-item {
    background: #fff;
    border-left: 3px solid var(--gold);
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
}
.goal-item:hover {
    border-left-color: var(--gold-dark);
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.08);
}
.goal-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
}
.goal-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}
.goal-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 1024px) {
    .vm-grid,
    .goals-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 720px) {
    .vm-card {
        padding: 40px 28px;
    }
    .vm-card h3 {
        font-size: 28px;
    }
    .vm-section-head {
        margin-bottom: 40px;
    }
    .vm-section-head h2 {
        font-size: 30px;
    }
    .goal-item {
        padding: 24px;
    }
}

/* Static-design former presidents list */
.former-presidents-page .page-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1532619675605-1ede6c2ed2b0?q=80&w=1920&auto=format&fit=crop') center/cover;
}
.former-presidents-container {
    max-width: 1100px;
}
.former-section-head {
    text-align: center;
    margin-bottom: 72px;
}
.former-section-eyebrow {
    color: var(--gold-dark);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}
.former-section-eyebrow::before,
.former-section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.former-section-eyebrow::before { left: 0; }
.former-section-eyebrow::after { right: 0; }
.former-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: var(--navy-deep);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.15;
}
.former-section-head p {
    color: var(--muted);
    font-size: 16px;
    max-width: 620px;
    margin: 16px auto 0;
    line-height: 1.7;
}
.former-presidents-list {
    position: relative;
    padding-left: 40px;
}
.former-presidents-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 95%, transparent 100%);
}
.former-president-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    padding: 32px 0;
    position: relative;
    transition: transform 0.3s;
}
.former-president-item:not(:last-child) {
    border-bottom: 1px solid var(--line);
}
.former-president-item:hover {
    transform: translateX(8px);
}
.former-president-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--cream);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--gold);
    transition: all 0.3s;
}
.former-president-item:hover::before {
    background: var(--navy-deep);
    transform: translateY(-50%) scale(1.2);
}
.former-president-photo {
    width: 200px;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: var(--paper);
}
.former-president-photo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}
.former-president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s, filter 0.6s;
    filter: grayscale(0.4);
}
.former-president-item:hover .former-president-photo img {
    transform: scale(1.05);
    filter: grayscale(0);
}
.former-president-photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--paper);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
}
.former-president-info {
    padding: 8px 0;
}
.former-president-term {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-deep);
    color: #fff;
    padding: 8px 18px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.former-president-term i {
    color: var(--gold);
    font-size: 12px;
}
.former-president-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: 0;
}
.former-president-role {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}
@media (max-width: 720px) {
    .former-section-head {
        margin-bottom: 44px;
    }
    .former-section-head h2 {
        font-size: 30px;
    }
    .former-presidents-list {
        padding-left: 28px;
    }
    .former-president-item {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 0;
    }
    .former-president-item::before {
        left: -35px;
        width: 12px;
        height: 12px;
    }
    .former-president-photo {
        width: 160px;
        height: 200px;
    }
    .former-president-name {
        font-size: 28px;
    }
}
/**
 * SANİAD Theme - Main Stylesheet
 *
 * Tüm sayfa ve modüllerin ortak stilleri burada yer alır.
 *
 * İçindekiler:
 * 1. CSS Değişkenleri (Renkler, Fontlar)
 * 2. Reset & Base
 * 3. Topbar
 * 4. Header & Navigation
 * 5. Page Hero
 * 6. Buttons
 * 7. Cards (Generic)
 * 8. Sections & Blocks
 * 9. Footer
 * 10. Responsive
 */

/* ==================================
   1. CSS DEĞİŞKENLERİ
   ================================== */
:root {
    --navy-deep: #1a237e;
    --navy: #232a8f;
    --gold: #c9a961;
    --gold-light: #e0c58a;
    --gold-dark: #a08540;
    --cream: #faf7f0;
    --paper: #f5f1e8;
    --ink: #1a1a1a;
    --muted: #6b6b6b;
    --line: rgba(26, 35, 126, 0.12);
    --shadow-sm: 0 2px 8px rgba(26, 35, 126, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 35, 126, 0.08);
    --shadow-lg: 0 15px 40px rgba(26, 35, 126, 0.15);
}

/* ==================================
   2. RESET & BASE
   ================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* WordPress core class'ları için */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1320px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.screen-reader-text { position: absolute; left: -9999px; }

/* Tipografi temelleri */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
}

/* ==================================
   3. TOPBAR
   ================================== */
.topbar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-info { display: flex; gap: 28px; }
.topbar-info span { display: flex; align-items: center; gap: 8px; }
.topbar-info i { color: var(--gold); font-size: 12px; }
.topbar-actions { display: flex; gap: 18px; align-items: center; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.topbar-social a:hover { color: var(--gold); }
.lang-switch {
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 18px;
}
.lang-switch ul {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lang-switch li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
}
.lang-switch li:not(:last-child)::after {
    content: "|";
    color: var(--gold);
}
.lang-switch a {
    color: var(--gold);
    text-decoration: none;
}

/* ==================================
   4. HEADER & NAVIGATION
   ================================== */
.site-header {
    background: #fff;
    border-bottom: 3px solid var(--navy-deep);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    min-width: 310px;
    text-decoration: none;
}
.brand img { width: 72px; height: 72px; }
.brand-text .acronym {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: 2px;
    line-height: 1;
}
.brand-text .full {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
    max-width: 360px;
}

/* Ana Menü */
.primary-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
.primary-menu > li { position: relative; }
.primary-menu a {
    color: var(--navy-deep);
    font-weight: 500;
    font-size: 14px;
    padding: 14px 16px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}
.primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.primary-menu > li > a:hover { color: var(--gold-dark); }
.primary-menu > li > a:hover::after { width: calc(100% - 32px); }
.primary-menu > li:hover .submenu,
.primary-menu > li.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Alt Menü (Dropdown) */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    padding: 24px 32px;
    min-width: 240px;
    list-style: none;
}
.submenu.cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 56px;
    min-width: 560px;
}
.submenu.align-right {
    left: auto;
    right: 0;
}
.submenu li { display: block; }
.submenu a {
    padding: 12px 0;
    font-size: 14px;
    color: var(--navy-deep);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.25s;
    display: block;
}
.submenu a::after { display: none; }
.submenu a:hover {
    color: var(--gold-dark);
    padding-left: 8px;
    border-bottom-color: var(--gold);
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--navy-deep);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* ==================================
   5. PAGE HERO (İç Sayfa Başlık)
   ================================== */
.page-hero {
    position: relative;
    min-height: 400px;
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1542621334-a254cf47733d?q=80&w=1920&auto=format&fit=crop') center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(201, 169, 97, 0.04) 80px,
        rgba(201, 169, 97, 0.04) 81px
    );
    pointer-events: none;
}
.page-hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 32px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.page-hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
}
.page-hero h1, .page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 24px;
    color: #fff;
}
.page-hero p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    margin-bottom: 32px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; color: var(--gold); }
.breadcrumb .current { color: var(--gold); }

/* ==================================
   6. BUTTONS
   ================================== */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 16px 32px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: var(--navy-deep);
    color: var(--gold);
    border-color: var(--navy-deep);
}
.btn-primary:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}
.btn-secondary {
    background: transparent;
    color: var(--navy-deep);
    border-color: var(--navy-deep);
}
.btn-secondary:hover {
    background: var(--navy-deep);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

/* ==================================
   7. SECTIONS & BLOCKS
   ================================== */
.content-block {
    padding: 80px 0 100px;
}
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}
.container-narrow {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Hakkimizda */
.about-page .page-hero {
    min-height: 400px;
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.86) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1920&auto=format&fit=crop') center/cover;
}
.about-page .page-hero-inner {
    padding: 80px 32px;
}
.about-page .page-hero-title {
    font-size: 64px;
    margin-bottom: 24px;
}
.about-page .page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 32px;
}
.about-block {
    padding: 100px 0;
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}
.about-intro-side {
    position: sticky;
    top: 130px;
}
.about-eyebrow,
.about-eyebrow-center {
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}
.about-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}
.about-intro-side h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: 36px;
}
.about-intro-side h2 em,
.about-section-head h2 em {
    font-style: italic;
    color: var(--gold-dark);
}
.about-intro-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(180deg, rgba(26, 35, 126, 0.08) 0%, rgba(26, 35, 126, 0.62) 100%),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=900&auto=format&fit=crop') center/cover;
}
.about-intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    z-index: -1;
}
.about-intro-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 126, 0.9) 100%);
}
.about-intro-image-overlay .label {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}
.about-intro-image-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}
.about-intro-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 24px;
}
.about-intro-content p strong {
    color: var(--navy-deep);
    font-weight: 600;
}
.about-intro-content .about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    line-height: 1.52;
    color: var(--navy-deep);
    font-weight: 500;
    font-style: italic;
    padding-left: 28px;
    border-left: 3px solid var(--gold);
    margin-bottom: 34px;
}
.about-section-head {
    text-align: center;
    margin-bottom: 64px;
}
.about-eyebrow-center {
    display: inline-block;
    position: relative;
    padding: 0 40px;
    margin-bottom: 16px;
}
.about-eyebrow-center::before,
.about-eyebrow-center::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.about-eyebrow-center::before { left: 0; }
.about-eyebrow-center::after { right: 0; }
.about-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
}
.about-section-head p {
    color: var(--muted);
    font-size: 17px;
    max-width: 620px;
    margin: 20px auto 0;
}
.about-timeline-section {
    background: var(--paper);
    padding: 100px 0;
}
.about-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.about-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent 0%, var(--gold) 10%, var(--gold) 90%, transparent 100%);
}
.about-timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 50px;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    transform: translateX(-60px);
}
.about-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    transform: translateX(60px);
}
.about-timeline-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.about-timeline-item::before {
    content: '';
    position: absolute;
    top: 40px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 4px solid var(--paper);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--gold);
}
.about-timeline-item:nth-child(odd)::before { right: -8px; }
.about-timeline-item:nth-child(even)::before { left: -8px; }
.about-timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: var(--gold-dark);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0;
}
.about-timeline-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}
.about-timeline-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}
.about-values-section {
    background: var(--cream);
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.about-value-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}
.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.1);
}
.about-value-card:hover::before {
    transform: scaleX(1);
}
.about-value-icon {
    width: 80px;
    height: 80px;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--gold-dark);
    font-size: 32px;
    transition: all 0.4s;
}
.about-value-card:hover .about-value-icon {
    background: var(--gold);
    color: var(--navy-deep);
    transform: rotate(10deg);
}
.about-value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--navy-deep);
    margin-bottom: 16px;
    font-weight: 600;
}
.about-value-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title .eyebrow {
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}
.section-title .eyebrow::before,
.section-title .eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.section-title .eyebrow::before { left: 0; }
.section-title .eyebrow::after { right: 0; }
.section-title h2 {
    font-size: 36px;
    color: var(--navy-deep);
    font-weight: 600;
    letter-spacing: 0;
}
.section-title h2 em {
    font-style: italic;
    color: var(--gold-dark);
}

/* ==================================
   8. CARDS (Generic)
   ================================== */
.post-card {
    background: #fff;
    border: 1px solid var(--line);
    transition: all 0.3s;
    overflow: hidden;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.post-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.post-card:hover .post-thumb img {
    transform: scale(1.05);
}
.post-content {
    padding: 24px 28px;
}
.post-meta {
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}
.post-title a {
    color: inherit;
    transition: color 0.3s;
}
.post-title a:hover {
    color: var(--gold-dark);
}
.post-excerpt {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}
.read-more {
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.read-more:hover {
    gap: 14px;
}

/* Grid Yapıları */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.posts-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ==================================
   9. PAGINATION
   ================================== */
.pagination-wrapper {
    margin-top: 56px;
    text-align: center;
}
.pagination-wrapper .nav-links,
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.pagination-wrapper .page-numbers,
.pagination a, .pagination span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}
.pagination-wrapper .page-numbers:hover,
.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.pagination-wrapper .page-numbers.current,
.pagination .active {
    background: var(--navy-deep);
    color: #fff;
    border-color: var(--navy-deep);
}

/* ==================================
   10. NO POSTS / EMPTY STATE
   ================================== */
.no-posts {
    text-align: center;
    padding: 80px 32px;
    background: #fff;
    border: 1px solid var(--line);
}
.no-posts i {
    font-size: 64px;
    color: var(--muted);
    opacity: 0.4;
    margin-bottom: 24px;
}
.no-posts h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--navy-deep);
    font-weight: 600;
    margin-bottom: 14px;
}
.no-posts p {
    color: var(--muted);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ==================================
   11. FOOTER
   ================================== */
.site-footer {
    background: #0a1145;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}
.footer-brand img {
    width: 80px;
    margin-bottom: 24px;
}
.footer-brand .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255,255,255,0.6);
}
.footer-col h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}
.footer-menu, .footer-legal-menu {
    list-style: none;
}
.footer-menu li, .footer-legal-menu li {
    margin-bottom: 12px;
}
.footer-menu a, .footer-legal-menu a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.3s;
}
.footer-menu a:hover, .footer-legal-menu a:hover {
    color: var(--gold);
}
.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}
.footer-col i {
    color: var(--gold);
    margin-right: 10px;
    width: 16px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-legal-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-legal-menu li {
    margin-bottom: 0;
}
.footer-legal-menu li:not(:last-child)::after {
    content: '|';
    color: rgba(255,255,255,0.25);
    margin-left: 20px;
}
.footer-legal-menu a {
    font-size: 12px;
}
.footer-social {
    display: flex;
    gap: 14px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
}

/* ==================================
   12. RESPONSIVE
   ================================== */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-intro-side {
        position: static;
    }
    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-timeline::before {
        left: 20px;
        transform: none;
    }
    .about-timeline-item,
    .about-timeline-item:nth-child(odd),
    .about-timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding: 30px 0 30px 64px;
        text-align: left;
        transform: translateY(40px);
    }
    .about-timeline-item.is-visible {
        transform: translateY(0);
    }
    .about-timeline-item:nth-child(odd)::before,
    .about-timeline-item:nth-child(even)::before {
        left: 12px;
        right: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-hero h1,
    .page-hero-title {
        font-size: 42px;
    }
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 1100px) {
    .header-inner {
        position: relative;
    }
    .brand {
        min-width: 0;
    }
    .primary-menu {
        display: none;
    }
    .primary-menu.is-open {
        display: flex;
        position: absolute;
        top: calc(100% + 3px);
        left: 24px;
        right: 24px;
        z-index: 120;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        background: #fff;
        border-top: 3px solid var(--gold);
        box-shadow: var(--shadow-lg);
    }
    .primary-menu.is-open > li {
        width: 100%;
        border-bottom: 1px solid var(--line);
    }
    .primary-menu.is-open > li:last-child {
        border-bottom: 0;
    }
    .primary-menu.is-open a {
        padding: 14px 18px;
    }
    .primary-menu.is-open > li > a::after {
        display: none;
    }
    .primary-menu.is-open .submenu {
        position: static;
        display: none;
        min-width: 0;
        width: 100%;
        padding: 6px 18px 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: 1px solid var(--line);
        box-shadow: none;
        background: var(--paper);
    }
    .primary-menu.is-open .submenu.cols-2 {
        grid-template-columns: 1fr;
    }
    .primary-menu.is-open .submenu a {
        padding: 10px 0;
        font-size: 13px;
        text-transform: none;
    }
    .primary-menu.is-open .submenu-open > .submenu {
        display: block;
    }
    .primary-menu.is-open .menu-item-has-children > a,
    .primary-menu.is-open .has-submenu > a {
        padding-right: 48px;
    }
    .primary-menu.is-open .menu-item-has-children > a::before,
    .primary-menu.is-open .has-submenu > a::before {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gold-dark);
        font-size: 11px;
        transition: transform 0.25s;
    }
    .primary-menu.is-open .submenu-open > a::before {
        transform: translateY(-50%) rotate(180deg);
    }
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .about-page .page-hero {
        min-height: 340px;
    }
    .about-page .page-hero-title {
        font-size: 42px;
    }
    .about-page .page-hero p {
        font-size: 16px;
    }
    .about-block,
    .about-timeline-section {
        padding: 64px 0;
    }
    .about-intro-side h2,
    .about-section-head h2 {
        font-size: 36px;
    }
    .about-intro-content .about-quote {
        font-size: 23px;
        padding-left: 20px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .header-inner {
        position: relative;
    }
    .primary-menu {
        display: none;
    }
    .primary-menu.is-open {
        display: flex;
        position: absolute;
        top: calc(100% + 3px);
        left: 16px;
        right: 16px;
        z-index: 120;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        background: #fff;
        border-top: 3px solid var(--gold);
        box-shadow: var(--shadow-lg);
    }
    .primary-menu.is-open > li {
        width: 100%;
        border-bottom: 1px solid var(--line);
    }
    .primary-menu.is-open > li:last-child {
        border-bottom: 0;
    }
    .primary-menu.is-open a {
        padding: 14px 18px;
    }
    .primary-menu.is-open > li > a::after {
        display: none;
    }
    .primary-menu.is-open .submenu {
        position: static;
        display: none;
        min-width: 0;
        width: 100%;
        padding: 6px 18px 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: 1px solid var(--line);
        box-shadow: none;
        background: var(--paper);
    }
    .primary-menu.is-open .submenu a {
        padding: 10px 0;
        font-size: 13px;
        text-transform: none;
    }
    .primary-menu.is-open .submenu-open > .submenu {
        display: block;
    }
    .primary-menu.is-open .menu-item-has-children > a,
    .primary-menu.is-open .has-submenu > a {
        padding-right: 48px;
    }
    .primary-menu.is-open .menu-item-has-children > a::before,
    .primary-menu.is-open .has-submenu > a::before {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gold-dark);
        font-size: 11px;
        transition: transform 0.25s;
    }
    .primary-menu.is-open .submenu-open > a::before {
        transform: translateY(-50%) rotate(180deg);
    }
    .mobile-menu-toggle {
        display: block;
    }
    .topbar-info {
        display: none;
    }
    .topbar-inner {
        justify-content: center;
    }
    .page-hero h1,
    .page-hero-title {
        font-size: 38px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .posts-grid,
    .posts-grid-2 {
        grid-template-columns: 1fr;
    }
    .content-block {
        padding: 48px 0 64px;
    }
    .brand img {
        width: 56px;
        height: 56px;
    }
    .brand-text .acronym {
        font-size: 24px;
    }
    .brand-text .full {
        font-size: 9px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .about-page .page-hero-inner {
        padding: 54px 18px;
    }
    .about-page .page-hero-title {
        font-size: 38px;
    }
    .about-intro-image::before {
        display: none;
    }
    .about-intro-image-overlay {
        padding: 24px;
    }
    .about-timeline-item,
    .about-timeline-item:nth-child(odd),
    .about-timeline-item:nth-child(even) {
        padding-right: 0;
    }
    .about-value-card {
        padding: 40px 24px;
    }
    .header-inner {
        padding: 14px 16px;
    }
    .brand {
        gap: 12px;
    }
    .brand img {
        width: 48px;
        height: 48px;
    }
    .brand-text .acronym {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
    .brand-text .full {
        font-size: 8px;
        letter-spacing: 1px;
        max-width: 190px;
    }
    .primary-menu.is-open {
        left: 12px;
        right: 12px;
        max-height: calc(100vh - 112px);
    }
    .container {
        padding: 0 16px;
    }
    .page-hero-inner {
        padding: 48px 16px;
    }
}
/**
 * SANİAD Theme - Ek Stiller
 *
 * Bu dosya main.css'in sonuna eklenmek üzere hazırlandı.
 * Şu bölümleri kapsar:
 * - 404 Hata Sayfası
 * - Arama Formu ve Sonuçları
 * - Genel Sayfa (page.php)
 * - Single (tek kayıt) sayfaları
 * - Container Narrow
 */

/* ============ CONTAINER NARROW ============ */
.container-narrow {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============ PAGE CONTENT ============ */
.page-content {
    background: #fff;
    padding: 48px 56px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
}
.page-thumbnail {
    margin: -48px -56px 32px;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.page-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-body {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.8;
}
.page-body h2,
.page-body h3,
.page-body h4 {
    color: var(--navy-deep);
    margin: 32px 0 16px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}
.page-body h2 { font-size: 32px; }
.page-body h3 { font-size: 26px; }
.page-body h4 { font-size: 22px; }
.page-body p { margin-bottom: 20px; }
.page-body ul,
.page-body ol {
    margin: 16px 0 24px 24px;
    color: var(--muted);
}
.page-body li {
    margin-bottom: 10px;
}
.page-body a {
    color: var(--gold-dark);
    text-decoration: underline;
}
.page-body blockquote {
    border-left: 4px solid var(--gold);
    padding: 16px 32px;
    background: var(--paper);
    margin: 32px 0;
    font-style: italic;
    color: var(--navy-deep);
}

.page-links {
    margin-top: 32px;
    font-size: 14px;
    color: var(--muted);
}
.page-links a {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 4px;
    background: var(--paper);
    color: var(--navy-deep);
    text-decoration: none;
    border: 1px solid var(--line);
}
.page-links a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

/* ============ 404 ERROR PAGE ============ */
.error-404 {
    padding: 80px 32px;
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(35, 42, 143, 0.92) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.error-404::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(201, 169, 97, 0.04) 80px,
        rgba(201, 169, 97, 0.04) 81px
    );
    pointer-events: none;
}
.error-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.error-pattern {
    text-align: center;
}
.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-weight: 700;
}
.error-number span {
    font-size: 220px;
    line-height: 1;
}
.error-number .zero {
    width: 200px;
    height: 200px;
    border: 8px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-number .zero i {
    font-size: 80px;
    color: var(--gold-light);
}

.error-content {
    color: #fff;
}
.error-eyebrow {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}
.error-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.1;
}
.error-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.error-search {
    margin-bottom: 32px;
    max-width: 480px;
}
.error-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.error-actions .btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}
.error-actions .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy-deep);
}
.error-actions .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.error-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.error-suggestions {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.error-suggestions h4 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 14px;
}
.error-suggestions ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.error-suggestions a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.error-suggestions a:hover { color: var(--gold); }
.error-suggestions a i {
    color: var(--gold);
    font-size: 10px;
}

/* ============ SEARCH FORM ============ */
.search-form-wrapper {
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.saniad-search-form {
    width: 100%;
}
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--line);
    transition: border-color 0.3s;
}
.search-input-wrapper:focus-within {
    border-color: var(--gold);
}
.search-input-wrapper > i {
    position: absolute;
    left: 20px;
    color: var(--gold-dark);
    font-size: 16px;
    pointer-events: none;
}
.saniad-search-form .search-field {
    flex: 1;
    padding: 16px 16px 16px 52px;
    border: 0;
    background: transparent;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    outline: none;
}
.saniad-search-form .search-submit {
    background: var(--navy-deep);
    color: var(--gold);
    border: 0;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}
.saniad-search-form .search-submit:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

/* ============ SEARCH RESULTS ============ */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.search-result {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    background: #fff;
    padding: 24px;
    border: 1px solid var(--line);
    transition: all 0.3s;
}
.search-result:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.08);
}
.search-result-thumb {
    overflow: hidden;
    aspect-ratio: 16/10;
    display: block;
}
.search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.search-result:hover .search-result-thumb img {
    transform: scale(1.05);
}
.search-result-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.search-result-meta .post-type {
    background: var(--gold);
    color: var(--navy-deep);
    padding: 4px 10px;
}
.search-result-meta .post-date {
    color: var(--muted);
}
.search-result-meta .post-date i {
    color: var(--gold-dark);
    margin-right: 4px;
}
.search-result-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--navy-deep);
    margin-bottom: 12px;
    line-height: 1.3;
}
.search-result-title a {
    color: inherit;
    transition: color 0.3s;
}
.search-result-title a:hover { color: var(--gold-dark); }
.search-result-excerpt {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .error-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .error-pattern { order: -1; }
    .error-number span { font-size: 140px; }
    .error-number .zero {
        width: 130px;
        height: 130px;
        border-width: 5px;
    }
    .error-number .zero i { font-size: 50px; }
    .error-actions { justify-content: center; }
    .error-suggestions ul { text-align: left; }
}

@media (max-width: 768px) {
    .page-content {
        padding: 32px 24px;
    }
    .page-thumbnail {
        margin: -32px -24px 24px;
    }
    .search-result {
        grid-template-columns: 1fr;
    }
    .error-content h1 {
        font-size: 36px;
    }
    .error-suggestions ul {
        grid-template-columns: 1fr;
    }
    .search-input-wrapper {
        flex-direction: column;
    }
    .saniad-search-form .search-submit {
        width: 100%;
    }
}
/**
 * SANİAD Theme - Ek Stiller 2 (Faz 3.1 Parça 2)
 *
 * Bu dosya main.css'in sonuna eklenmek üzere hazırlandı.
 * - Filter Bar (Haberler Archive)
 * - Single News Layout
 * - Sidebar Widget'lar
 * - Share Buttons
 * - Related Section
 */

/* ============ FILTER BAR ============ */
.filter-bar {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
}
.filter-tabs {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}
.filter-tab {
    padding: 12px 24px;
    background: transparent;
    color: var(--navy-deep);
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
}
.filter-tab:hover {
    background: #fff;
    color: var(--gold-dark);
    border-color: var(--gold);
}
.filter-tab.active {
    background: var(--navy-deep);
    color: var(--gold);
    border-color: var(--navy-deep);
}

/* ============ NEWS ARCHIVE GRID ============ */
.news-archive-grid {
    grid-template-columns: repeat(3, 1fr);
}
.news-archive-grid .news-card.featured {
    grid-column: span 1;
}
.news-archive-grid .news-card.featured .news-body h3 {
    font-size: 24px;
}
@media (max-width: 1024px) {
    .news-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .news-archive-grid { grid-template-columns: 1fr; }
}

/* ============ SINGLE NEWS LAYOUT ============ */
.single-news-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}
@media (max-width: 1024px) {
    .single-news-layout {
        grid-template-columns: 1fr;
    }
}

/* === Ana İçerik === */
.single-news-main {
    background: #fff;
    padding: 48px 56px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
}
@media (max-width: 768px) {
    .single-news-main {
        padding: 32px 24px;
    }
}

.single-news-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}
.single-news-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}
.single-news-meta .meta-item i {
    color: var(--gold-dark);
}
.single-news-meta .meta-tag {
    background: var(--paper);
    color: var(--navy-deep);
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.single-news-meta .meta-tag:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.single-news-thumb {
    margin: 0 -56px 32px;
    overflow: hidden;
}
.single-news-thumb img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .single-news-thumb {
        margin: 0 -24px 24px;
    }
}

.single-news-excerpt {
    font-size: 18px;
    line-height: 1.7;
    color: var(--navy-deep);
    font-weight: 500;
    padding: 24px 28px;
    background: var(--paper);
    border-left: 4px solid var(--gold);
    margin-bottom: 32px;
    font-family: 'Cormorant Garamond', serif;
}

.single-news-content {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.8;
}
.single-news-content p {
    margin-bottom: 20px;
}

/* === Sosyal Paylaşım === */
.single-share {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.single-share h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--navy-deep);
    margin-bottom: 16px;
    font-weight: 600;
}
.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-linkedin { background: #0a66c2; }
.share-whatsapp { background: #25d366; }
.share-email { background: var(--navy-deep); }

/* === Sidebar === */
.single-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sidebar-widget {
    background: #fff;
    padding: 28px;
    border: 1px solid var(--line);
}
.sidebar-widget h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--navy-deep);
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
}

.source-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 16px;
}
.source-name i {
    color: var(--gold-dark);
    font-size: 18px;
}
.sidebar-widget .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 12px;
    color: var(--navy-deep);
    border-color: var(--navy-deep);
}
.sidebar-widget .btn-outline:hover {
    background: var(--navy-deep);
    color: var(--gold);
}

/* Sidebar News List */
.sidebar-news-list {
    display: flex;
    flex-direction: column;
}
.sidebar-news-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.sidebar-news-item:last-child {
    border-bottom: none;
}
.sidebar-news-item:hover {
    padding-left: 6px;
}
.sidebar-news-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
}
.sidebar-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-news-content {
    flex: 1;
    min-width: 0;
}
.sidebar-news-date {
    font-size: 11px;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.sidebar-news-content h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.35;
    transition: color 0.3s;
}
.sidebar-news-item:hover h5 {
    color: var(--gold-dark);
}

.sidebar-all-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}
.sidebar-all-link:hover {
    color: var(--navy-deep);
}

/* ============ RELATED SECTION ============ */
.related-section {
    background: var(--paper);
    padding: 80px 0;
    margin-top: 0;
}
.related-section .section-head {
    margin-bottom: 48px;
}
.related-section .section-head h2 {
    font-size: 36px;
}

/* ============ SECTION HEAD (single news için) ============ */
.related-section .section-eyebrow {
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}
.related-section .section-eyebrow::before,
.related-section .section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.related-section .section-eyebrow::before { left: 0; }
.related-section .section-eyebrow::after { right: 0; }
.related-section .section-head h2 em {
    font-style: italic;
    color: var(--gold-dark);
}
/**
 * SANİAD Theme - Ek Stiller 3 (Faz 3.2)
 *
 * Bu dosya main.css'in sonuna eklenmek üzere hazırlandı.
 * - Event Archive
 * - Single Event
 * - Member Archive
 * - Single Member
 */

/* ============ FILTER COUNT BADGE ============ */
.filter-count {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    font-size: 10px;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold-dark);
    border-radius: 2px;
    font-weight: 700;
}
.filter-tab.active .filter-count {
    background: var(--gold);
    color: var(--navy-deep);
}

.filter-tabs-scrollable {
    flex-wrap: wrap;
    justify-content: center;
}

/* ============ EVENTS ARCHIVE GRID ============ */
.events-archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
@media (max-width: 768px) {
    .events-archive-grid { grid-template-columns: 1fr; }
}

.event-archive-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.event-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
    border-color: var(--gold);
}

.event-archive-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--navy);
}
.event-archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.event-archive-card:hover .event-archive-thumb img {
    transform: scale(1.08);
}
.event-type-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.event-archive-body {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 24px;
    flex: 1;
}

.event-archive-date {
    text-align: center;
    background: var(--navy-deep);
    color: #fff;
    padding: 16px 8px;
    height: fit-content;
}
.event-archive-date .day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
}
.event-archive-date .month {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 6px;
    font-weight: 600;
}
.event-archive-date .year {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.event-archive-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 600;
    transition: color 0.3s;
}
.event-archive-card:hover .event-archive-content h3 { color: var(--gold-dark); }

.event-archive-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--muted);
}
.event-archive-meta i {
    color: var(--gold-dark);
    margin-right: 4px;
}
.event-archive-content p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
}
.event-archive-link {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.event-archive-card:hover .event-archive-link { gap: 12px; }

/* Geçmiş etkinlik vurgusu */
.event-status-gecmis .event-archive-date {
    background: var(--muted);
}
.event-status-gecmis {
    opacity: 0.85;
}

/* ============ SINGLE EVENT ============ */
.single-event-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
}
@media (max-width: 1024px) {
    .single-event-layout {
        grid-template-columns: 1fr;
    }
}

.single-event-main {
    background: #fff;
    padding: 0;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    overflow: hidden;
}

.single-event-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.single-event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-past-notice {
    background: var(--paper);
    color: var(--muted);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    border-bottom: 1px solid var(--line);
}
.event-past-notice i {
    color: var(--gold-dark);
}

.single-event-content {
    padding: 40px 48px;
}
@media (max-width: 768px) {
    .single-event-content { padding: 24px; }
}

.event-speakers {
    margin: 0 48px 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
@media (max-width: 768px) {
    .event-speakers { margin: 0 24px 24px; }
}
.event-speakers h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 600;
}
.speakers-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.speakers-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--paper);
    border-left: 3px solid var(--gold);
    color: var(--ink);
    font-weight: 500;
}
.speakers-list i {
    color: var(--gold-dark);
}

/* === EVENT INFO CARD (Sidebar) === */
.event-info-card {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.event-info-date {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: #fff;
    padding: 32px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.event-info-date::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(201, 169, 97, 0.06) 40px,
        rgba(201, 169, 97, 0.06) 41px
    );
    pointer-events: none;
}
.event-info-date .big-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 2;
}
.event-info-date .big-month {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #fff;
    margin-top: 8px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}
.event-info-date .big-year {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    margin-top: 6px;
    position: relative;
    z-index: 2;
}

.event-info-body {
    padding: 28px 24px;
}
.event-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--navy-deep);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
}

.event-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}
.event-info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.event-info-list i {
    color: var(--gold-dark);
    font-size: 18px;
    width: 24px;
    text-align: center;
    margin-top: 2px;
}
.event-info-list strong {
    display: block;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.event-info-list div {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}
.event-info-list small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}
.status-badge.status-yaklasan {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}
.status-badge.status-gecmis {
    background: rgba(158, 158, 158, 0.15);
    color: var(--muted);
}

.event-register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--navy-deep);
    color: var(--gold);
    padding: 16px 24px;
    border: 2px solid var(--navy-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}
.event-register-btn:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

/* Related Events */
.events-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.events-related-grid .event-archive-body {
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 18px;
}
.events-related-grid .event-archive-date .day {
    font-size: 30px;
}
.events-related-grid .event-archive-content h3 {
    font-size: 17px;
}
@media (max-width: 1024px) {
    .events-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .events-related-grid { grid-template-columns: 1fr; }
}


/* ============ MEMBERS ARCHIVE ============ */
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 1024px) {
    .members-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .members-grid { grid-template-columns: 1fr; }
}

.member-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
    border-color: var(--gold);
}

.member-card-logo {
    aspect-ratio: 3/2;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-bottom: 1px solid var(--line);
}
.member-card-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.member-logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.member-logo-placeholder i {
    font-size: 36px;
    color: var(--gold-dark);
}

.member-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.member-sector {
    font-size: 10px;
    color: var(--gold-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}
.member-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
    transition: color 0.3s;
}
.member-card:hover .member-name { color: var(--gold-dark); }

.member-authorized {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line);
}
.member-authorized i {
    color: var(--gold-dark);
    margin-right: 6px;
    font-size: 11px;
}
.member-authorized small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
    margin-left: 18px;
}

.member-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 14px;
}
.member-meta i {
    color: var(--gold-dark);
    margin-right: 6px;
}

.member-link {
    margin-top: auto;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.member-card:hover .member-link { gap: 12px; }


/* ============ SINGLE MEMBER ============ */
.single-member-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}
@media (max-width: 1024px) {
    .single-member-layout {
        grid-template-columns: 1fr;
    }
}

.single-member-main {
    background: #fff;
    padding: 48px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
}
@media (max-width: 768px) {
    .single-member-main { padding: 32px 24px; }
}

.member-header {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    align-items: center;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
    .member-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.member-logo-large {
    aspect-ratio: 1;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 2px solid var(--gold);
}
.member-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.member-header-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy-deep);
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.2;
}
.member-sector-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--paper);
    color: var(--navy-deep);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 12px;
}
.member-sector-badge:hover {
    background: var(--gold);
    color: var(--navy-deep);
}
.member-sector-badge i {
    color: var(--gold-dark);
}

.member-since {
    color: var(--muted);
    font-size: 13px;
}
.member-since i {
    color: var(--gold-dark);
    margin-right: 6px;
}

.member-description {
    margin-bottom: 32px;
}
.member-description h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}
.member-excerpt {
    font-size: 17px;
    line-height: 1.7;
    color: var(--navy-deep);
    font-weight: 500;
    padding: 20px 24px;
    background: var(--paper);
    border-left: 4px solid var(--gold);
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* Yetkili Kişi Kartı */
.member-authorized-card {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: #fff;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.member-authorized-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(201, 169, 97, 0.04) 40px,
        rgba(201, 169, 97, 0.04) 41px
    );
    pointer-events: none;
}
.authorized-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 97, 0.15);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.authorized-icon i {
    font-size: 30px;
    color: var(--gold);
}
.authorized-info {
    position: relative;
    z-index: 2;
}
.authorized-label {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.authorized-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}
.authorized-position {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin-top: 4px;
}

/* === MEMBER CONTACT CARD (Sidebar) === */
.member-contact-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 32px 28px;
    position: sticky;
    top: 100px;
}
.contact-card-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-card-title i {
    color: var(--gold-dark);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}
.contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-list > li > i {
    color: var(--gold-dark);
    font-size: 16px;
    width: 24px;
    text-align: center;
    margin-top: 4px;
}
.contact-list strong {
    display: block;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-list div {
    flex: 1;
    min-width: 0;
}
.contact-list a {
    color: var(--navy-deep);
    font-size: 14px;
    word-break: break-word;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.contact-list a:hover {
    color: var(--gold-dark);
}

/* Üye Sosyal Medya */
.member-social {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.member-social h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 600;
}
.member-social-buttons {
    display: flex;
    gap: 10px;
}
.member-social-buttons .social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.member-social-buttons .social-btn:hover {
    transform: translateY(-3px);
}
.social-btn.linkedin { background: #0a66c2; }
.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-btn.facebook { background: #1877f2; }

/* Aynı sektör grid */
.members-related-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .members-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .members-related-grid { grid-template-columns: 1fr; }
}
/**
 * SANİAD Theme - Ek Stiller 4 (Faz 3.3 Parça A)
 *
 * - Tek Kolon İçerik Şablonu
 * - Yönetim Kurulu Listesi
 * - Önceki Başkanlar Timeline
 */

/* ============ CONTENT BLOCK SMALL ============ */
.content-block-small {
    padding: 64px 0 32px;
}
.intro-text {
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
}
.intro-text p {
    margin-bottom: 18px;
}

/* ============ YÖNETİM KURULU ============ */
.leaders-section {
    padding: 80px 0;
}

.leaders-group {
    margin-bottom: 64px;
}
.leaders-group:last-child {
    margin-bottom: 0;
}

.leaders-group-head {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}
.leaders-group-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--navy-deep);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0;
}
.leaders-group-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

.leaders-grid {
    display: grid;
    gap: 32px;
}

/* 1 üye (Başkan) — tek büyük kart */
.leaders-grid-1 {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
}
.leaders-grid-1 .leader-card {
    grid-template-columns: 280px 1fr;
}

/* 2 üye (Başkan Yardımcıları) */
.leaders-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* 3+ üye (Üyeler) */
.leaders-grid-3,
.leaders-grid-4,
.leaders-grid-5,
.leaders-grid-6,
.leaders-grid-7,
.leaders-grid-8,
.leaders-grid-9,
.leaders-grid-10 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .leaders-grid-3,
    .leaders-grid-4,
    .leaders-grid-5,
    .leaders-grid-6,
    .leaders-grid-7,
    .leaders-grid-8,
    .leaders-grid-9,
    .leaders-grid-10 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 720px) {
    .leaders-grid,
    .leaders-grid-1,
    .leaders-grid-2,
    .leaders-grid-3,
    .leaders-grid-4,
    .leaders-grid-5,
    .leaders-grid-6,
    .leaders-grid-7,
    .leaders-grid-8,
    .leaders-grid-9,
    .leaders-grid-10 {
        grid-template-columns: 1fr;
    }
    .leaders-grid-1 .leader-card {
        grid-template-columns: 1fr;
    }
}

.leader-card {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    transition: all 0.3s;
}
.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.12);
    border-color: var(--gold);
}

.leader-photo {
    aspect-ratio: 4/5;
    background: var(--paper);
    overflow: hidden;
    position: relative;
}
.leaders-grid-1 .leader-photo {
    aspect-ratio: 1;
}
.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.leader-card:hover .leader-photo img {
    transform: scale(1.05);
}
.leader-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--paper) 0%, rgba(201, 169, 97, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.leader-photo-placeholder i {
    font-size: 80px;
    color: var(--gold);
    opacity: 0.4;
}

.leader-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.leaders-grid-1 .leader-info {
    padding: 40px;
}
.leader-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--navy-deep);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.2;
}
.leaders-grid-1 .leader-name {
    font-size: 32px;
}
.leader-position {
    display: inline-block;
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    align-self: flex-start;
}
.leader-company {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
    font-weight: 500;
}
.leader-company i {
    color: var(--gold-dark);
}
.leader-bio {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}
.leaders-grid-1 .leader-bio {
    font-size: 15px;
}
.leader-bio p {
    margin-bottom: 8px;
}

.leader-contact {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.leader-link {
    width: 38px;
    height: 38px;
    background: var(--paper);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
}
.leader-link:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

/* Static-design board layout */
.board-page .page-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.level-head {
    text-align: center;
    margin-bottom: 56px;
}

.level-eyebrow {
    color: var(--gold-dark);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}

.level-eyebrow::before,
.level-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.level-eyebrow::before {
    left: 0;
}

.level-eyebrow::after {
    right: 0;
}

.level-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy-deep);
    font-weight: 600;
    letter-spacing: 0;
}

.board-president-section {
    margin-bottom: 100px;
}

.board-president-card {
    max-width: 720px;
    margin: 0 auto;
}

.board-president-photo {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
    background: var(--paper);
}

.board-president-photo::before,
.board-president-photo::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 2;
}

.board-president-photo::before {
    top: 0;
    left: 0;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
}

.board-president-photo::after {
    right: 0;
    bottom: 0;
    border-right: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.board-president-photo img,
.board-vp-photo img,
.board-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.board-president-info {
    text-align: center;
    padding: 28px 32px;
    background: var(--navy-deep);
    color: #fff;
    position: relative;
    max-width: 480px;
    margin: 36px auto 0;
}

.board-president-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
}

.board-president-info .role,
.board-vp-info .role,
.board-member-info .role {
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.board-president-info .role {
    font-size: 11px;
    margin-bottom: 10px;
}

.board-president-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.board-vp-section {
    background: var(--paper);
    padding: 100px 0;
    margin-bottom: 100px;
}

.board-vp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.board-vp-photo,
.board-member-photo {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--paper);
}

.board-vp-photo img,
.board-member-photo img {
    transition: transform 0.6s, filter 0.6s;
}

.board-vp-card:hover .board-vp-photo img,
.board-member-card:hover .board-member-photo img {
    transform: scale(1.05);
}

.board-vp-info {
    background: #fff;
    padding: 28px;
    border-bottom: 3px solid var(--gold);
    text-align: center;
}

.board-vp-info .role,
.board-member-info .role {
    font-size: 11px;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.board-vp-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
}

.board-members-section {
    margin-bottom: 100px;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.board-member-photo img {
    filter: grayscale(0.15);
}

.board-member-card:hover .board-member-photo img {
    filter: grayscale(0);
}

.board-member-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 35, 126, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.board-member-card:hover .board-member-photo::after {
    opacity: 1;
}

.board-member-info {
    padding: 20px 4px;
    text-align: center;
}

.board-member-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
}

.board-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: var(--paper);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

@media (max-width: 1024px) {
    .board-members-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .level-head {
        margin-bottom: 36px;
    }

    .level-head h2 {
        font-size: 28px;
    }

    .board-vp-grid,
    .board-members-grid {
        grid-template-columns: 1fr;
    }

    .board-vp-section {
        padding: 70px 0;
        margin-bottom: 70px;
    }

    .board-president-section,
    .board-members-section {
        margin-bottom: 70px;
    }
}

/* Static-design audit board layout */
.audit-page .page-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.audit-board-section {
    padding: 100px 0;
}

.audit-section-head {
    text-align: center;
    margin-bottom: 64px;
}

.audit-section-eyebrow {
    color: var(--gold-dark);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}

.audit-section-eyebrow::before,
.audit-section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.audit-section-eyebrow::before {
    left: 0;
}

.audit-section-eyebrow::after {
    right: 0;
}

.audit-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: var(--navy-deep);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.15;
}

.audit-section-head p {
    color: var(--muted);
    font-size: 16px;
    max-width: 720px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.auditors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.auditor-card {
    background: transparent;
}

.auditor-photo {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--paper);
}

.auditor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s, filter 0.6s;
    filter: grayscale(0.15);
}

.auditor-card:hover .auditor-photo img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.auditor-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 35, 126, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.auditor-card:hover .auditor-photo::after {
    opacity: 1;
}

.auditor-info {
    padding: 24px 8px 8px;
    text-align: center;
}

.auditor-info .role {
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.auditor-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .auditors-grid {
        gap: 28px;
    }
}

@media (max-width: 720px) {
    .audit-board-section {
        padding: 70px 0;
    }

    .audit-section-head {
        margin-bottom: 40px;
    }

    .audit-section-head h2 {
        font-size: 30px;
    }

    .auditors-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}


/* ============ ÖNCEKİ BAŞKANLAR TIMELINE ============ */
.former-section {
    padding: 80px 0 100px;
}

.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    opacity: 0.4;
}
@media (max-width: 720px) {
    .timeline-wrapper::before {
        left: 20px;
    }
}

.former-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}
@media (max-width: 720px) {
    .former-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-left: 48px;
    }
}

.former-date {
    text-align: right;
    position: relative;
    padding-right: 32px;
}
@media (max-width: 720px) {
    .former-date {
        text-align: left;
        padding-right: 0;
    }
}

.former-date::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 12px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border: 4px solid var(--cream);
    border-radius: 50%;
    z-index: 2;
}
@media (max-width: 720px) {
    .former-date::before {
        right: auto;
        left: -36px;
    }
}

.former-year-range {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--navy-deep);
    font-weight: 700;
    line-height: 1;
    padding-top: 6px;
}
@media (max-width: 720px) {
    .former-year-range {
        font-size: 24px;
    }
}

.former-content {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    padding: 32px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    align-items: flex-start;
    transition: all 0.3s;
}
.former-content:hover {
    transform: translateX(4px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.08);
}
@media (max-width: 720px) {
    .former-content {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }
}

.former-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--paper);
}
@media (max-width: 720px) {
    .former-photo {
        aspect-ratio: 16/9;
        max-width: 200px;
    }
}
.former-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.former-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--paper) 0%, rgba(201, 169, 97, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.former-photo-placeholder i {
    font-size: 50px;
    color: var(--gold);
    opacity: 0.4;
}

.former-info {
    display: flex;
    flex-direction: column;
}
.former-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--navy-deep);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.2;
}
.former-company {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--line);
}
.former-company i {
    color: var(--gold-dark);
}
.former-bio {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.former-bio p {
    margin-bottom: 10px;
}
.former-achievements {
    background: var(--paper);
    padding: 16px 20px;
    margin-top: 14px;
}
.former-achievements h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--navy-deep);
    margin-bottom: 8px;
    font-weight: 600;
}
.former-achievements p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}
/**
 * SANİAD Theme - Ek Stiller 5 (Faz 3.3 Parça B)
 *
 * - Üye Listesi (Sektör Grupları)
 * - Üyelik Şartları (Apply CTA)
 * - Üyelik Başvurusu (Form Layout)
 * - Sektörel Dağılım (İstatistikler + Bar Chart)
 * - Firma Kataloğu (Alfabetik Liste)
 */

/* ============ MEMBERS STATS BAR ============ */
.members-stats-bar {
    background: var(--paper);
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.stat-item {
    padding: 16px;
    border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: 0; }
.stat-item .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: var(--navy-deep);
    font-weight: 700;
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 600;
}
@media (max-width: 720px) {
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat-item { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
    .stat-item:last-child { border-bottom: 0; }
}

/* ============ STICKY FILTER ============ */
.sticky-filter {
    position: sticky;
    top: 102px;
    z-index: 50;
    background: var(--paper);
}

/* ============ MEMBERS SECTION GROUPED ============ */
.members-section-grouped {
    padding: 64px 0 100px;
}
.sector-group {
    margin-bottom: 80px;
}
.sector-group:last-child {
    margin-bottom: 0;
}

.sector-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--gold);
    flex-wrap: wrap;
    gap: 16px;
}
.sector-group-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--navy-deep);
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
}
.sector-group-head h2 .sector-icon {
    width: 56px;
    height: 56px;
    background: var(--paper);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sector-group-head h2 .sector-icon i {
    color: var(--gold-dark);
    font-size: 22px;
}
.sector-group-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.sector-count {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 14px;
    background: var(--paper);
}
.sector-link {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.sector-link:hover { gap: 12px; }

/* ============ APPLY CTA SECTION ============ */
.apply-cta-section {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(35, 42, 143, 0.92) 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.apply-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(201, 169, 97, 0.04) 80px,
        rgba(201, 169, 97, 0.04) 81px
    );
    pointer-events: none;
}
.apply-cta-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (max-width: 1024px) {
    .apply-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.apply-cta-eyebrow {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}
.apply-cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 14px;
    font-weight: 600;
    line-height: 1.2;
}
.apply-cta-content h2 em {
    color: var(--gold-light);
    font-style: italic;
}
.apply-cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.7;
}
.apply-cta-action {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
@media (max-width: 1024px) {
    .apply-cta-action {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}
.apply-cta-action .btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    justify-content: center;
}
.apply-cta-action .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}
.apply-cta-action .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    justify-content: center;
}
.apply-cta-action .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============ APPLICATION FORM ============ */
.application-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}
@media (max-width: 1024px) {
    .application-layout { grid-template-columns: 1fr; }
}

.application-info .page-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--navy-deep);
    margin-bottom: 18px;
    font-weight: 600;
}

.application-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}
.step-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px dashed var(--line);
}
.step-item:last-child {
    border-bottom: 0;
}
.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-align: center;
}
.step-content h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
}
.step-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.quick-contact-box {
    background: var(--paper);
    border-left: 4px solid var(--gold);
    padding: 24px;
    margin-top: 32px;
}
.quick-contact-box h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.quick-contact-box p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.6;
}
.quick-contact-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quick-contact-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
}
.quick-contact-box li i {
    color: var(--gold-dark);
}
.quick-contact-box a {
    color: var(--navy-deep);
    text-decoration: none;
    transition: color 0.3s;
}
.quick-contact-box a:hover {
    color: var(--gold-dark);
}

/* Form Card */
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--gold);
    padding: 36px 40px;
    position: sticky;
    top: 120px;
}
@media (max-width: 768px) {
    .form-card { padding: 24px; }
}
.form-card-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-card-title i { color: var(--gold-dark); }
.form-card-subtitle {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.form-placeholder {
    background: var(--paper);
    padding: 32px;
    text-align: center;
    border: 1px dashed var(--gold);
}
.form-placeholder i {
    font-size: 36px;
    color: var(--gold-dark);
    margin-bottom: 14px;
}
.form-placeholder p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.form-placeholder a {
    color: var(--gold-dark);
    font-weight: 600;
}

/* Contact Form 7 entegrasyon stilleri */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: var(--paper);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    transition: all 0.3s;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--gold);
    outline: 0;
    background: #fff;
}
.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}
.wpcf7 label {
    display: block;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--navy-deep);
    font-weight: 600;
    letter-spacing: 0.3px;
}
.wpcf7-submit {
    background: var(--navy-deep) !important;
    color: var(--gold) !important;
    padding: 16px 32px !important;
    border: 2px solid var(--navy-deep) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    width: 100%;
    margin-top: 8px;
}
.wpcf7-submit:hover {
    background: var(--gold) !important;
    color: var(--navy-deep) !important;
    border-color: var(--gold) !important;
}


/* ============ SECTOR STATS / DISTRIBUTION ============ */
.sector-stats-section {
    padding: 64px 0;
}

.sector-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}
@media (max-width: 720px) {
    .sector-summary-grid { grid-template-columns: 1fr; }
}

.sector-summary-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}
.sector-summary-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.08);
}
.sector-summary-card.highlight {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: #fff;
    border-color: var(--navy-deep);
}
.summary-icon {
    width: 60px;
    height: 60px;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sector-summary-card.highlight .summary-icon {
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid var(--gold);
}
.summary-icon i {
    color: var(--gold-dark);
    font-size: 26px;
}
.sector-summary-card.highlight .summary-icon i {
    color: var(--gold);
}
.summary-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy-deep);
    font-weight: 700;
    line-height: 1;
}
.sector-summary-card.highlight .summary-num {
    color: var(--gold);
}
.summary-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 600;
}
.sector-summary-card.highlight .summary-label {
    color: rgba(255,255,255,0.85);
}

/* Distribution Bars */
.sector-distribution {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    padding: 40px;
}
@media (max-width: 768px) {
    .sector-distribution { padding: 24px; }
}
.distribution-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--navy-deep);
    margin-bottom: 32px;
    font-weight: 600;
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.distribution-row {
    display: grid;
    grid-template-columns: 240px 1fr 90px;
    gap: 24px;
    align-items: center;
    padding: 14px 16px;
    background: var(--paper);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.distribution-row:hover {
    background: rgba(201, 169, 97, 0.08);
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .distribution-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.distribution-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.distribution-icon {
    width: 38px;
    height: 38px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
}
.distribution-icon i {
    color: var(--gold-dark);
    font-size: 14px;
}
.distribution-name {
    font-weight: 600;
    color: var(--navy-deep);
    font-size: 14px;
}

.distribution-bar-wrapper {
    background: #fff;
    height: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}
.distribution-bar {
    background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    transition: width 1s ease;
    min-width: 50px;
}
.bar-percentage {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.distribution-count {
    text-align: right;
}
.distribution-count strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--navy-deep);
    font-weight: 700;
    display: block;
    line-height: 1;
}
.distribution-count span {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Sector Cards (Bottom Section) */
.sector-cards-section {
    background: var(--paper);
    padding: 80px 0;
}
.sector-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .sector-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .sector-cards-grid { grid-template-columns: 1fr; }
}

.sector-card-large {
    background: #fff;
    border: 1px solid var(--line);
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sector-card-large:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
}
.sector-card-large .sector-card-icon {
    width: 70px;
    height: 70px;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}
.sector-card-large:hover .sector-card-icon {
    background: var(--gold);
}
.sector-card-large .sector-card-icon i {
    font-size: 28px;
    color: var(--gold-dark);
    transition: color 0.3s;
}
.sector-card-large:hover .sector-card-icon i {
    color: var(--navy-deep);
}
.sector-card-large h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    margin-bottom: 8px;
    font-weight: 600;
}
.sector-card-count {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}
.sector-card-link {
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.3s;
}
.sector-card-large:hover .sector-card-link { gap: 12px; }


/* ============ FİRMA KATALOĞU (Alfabetik) ============ */
.alphabet-filter-bar {
    background: var(--paper);
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 102px;
    z-index: 50;
}
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.letter-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.letter-link.active {
    color: var(--navy-deep);
    background: #fff;
    border-color: var(--line);
}
.letter-link.active:hover {
    background: var(--navy-deep);
    color: var(--gold);
    border-color: var(--navy-deep);
}
.letter-link.disabled {
    color: rgba(0,0,0,0.2);
    cursor: not-allowed;
}

.catalog-section {
    padding: 64px 0 100px;
}

.letter-group {
    margin-bottom: 48px;
}
.letter-group:last-child {
    margin-bottom: 0;
}

.letter-group-head {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 3px solid var(--gold);
}
.letter-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    background: var(--navy-deep);
    padding: 14px 0;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.letter-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--navy-deep);
    margin-bottom: 6px;
    font-weight: 600;
}
.letter-count {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.catalog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
@media (max-width: 720px) {
    .catalog-list { grid-template-columns: 1fr; }
}

.catalog-item {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--line);
    margin: -1px 0 0 -1px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.catalog-item:hover {
    background: var(--paper);
    z-index: 2;
    position: relative;
    border-color: var(--gold);
}
.catalog-bullet i {
    color: var(--gold);
    font-size: 6px;
}
.catalog-name {
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 14px;
}
.catalog-arrow i {
    color: var(--gold-dark);
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s;
}
.catalog-item:hover .catalog-arrow i {
    opacity: 1;
    transform: translateX(4px);
}
/**
 * SANİAD Theme - Ek Stiller 6 (Faz 3.3 Parça C)
 *
 * - Page Feature Image
 * - Rich Content (zengin içerik)
 * - Info Cards (Sancaktepe alt linkler)
 * - Industry Sectors Section
 * - Data Source Box
 * - Contact Cards
 * - Contact Form + Map Layout
 * - Contact Social Buttons
 */

/* ============ PAGE FEATURE IMAGE ============ */
.page-feature-image {
    padding: 0 0 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
.feature-image-wrapper {
    aspect-ratio: 21/9;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 24px 60px rgba(26, 35, 126, 0.15);
}
.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.content-block-after-image {
    padding-top: 80px;
}
@media (max-width: 768px) {
    .page-feature-image {
        margin-top: -32px;
    }
    .feature-image-wrapper {
        aspect-ratio: 16/9;
        border-width: 2px;
    }
}


/* ============ RICH CONTENT (zengin içerik) ============ */
.rich-content .page-body {
    font-size: 17px;
    line-height: 1.85;
}
.rich-content .page-body p:first-of-type {
    font-size: 19px;
    color: var(--navy-deep);
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.7;
}
.rich-content .page-body img {
    max-width: 100%;
    height: auto;
    margin: 28px 0;
    display: block;
}
.rich-content .page-body .wp-block-image {
    margin: 28px 0;
}
.rich-content .page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 14px;
    background: #fff;
}
.rich-content .page-body table th {
    background: var(--navy-deep);
    color: var(--gold);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 13px;
    text-transform: uppercase;
}
.rich-content .page-body table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}
.rich-content .page-body table tr:hover td {
    background: var(--paper);
}


/* ============ INFO CARDS (Sancaktepe altı linkler) ============ */
.info-cards-section {
    background: var(--paper);
    padding: 80px 0;
}
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 1024px) {
    .info-cards-grid { grid-template-columns: 1fr; }
}

.info-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 36px 32px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.1);
    border-color: var(--gold);
}
.info-card:hover::before {
    transform: scaleX(1);
}
.info-card-icon {
    width: 64px;
    height: 64px;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid var(--gold);
    transition: all 0.3s;
}
.info-card:hover .info-card-icon {
    background: var(--gold);
}
.info-card-icon i {
    color: var(--gold-dark);
    font-size: 26px;
    transition: color 0.3s;
}
.info-card:hover .info-card-icon i {
    color: var(--navy-deep);
}
.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--navy-deep);
    margin-bottom: 12px;
    font-weight: 600;
}
.info-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}
.info-card-link {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.3s;
}
.info-card:hover .info-card-link {
    gap: 12px;
}


/* ============ INDUSTRY SECTORS (Sanayi Profili) ============ */
.industry-sectors-section {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(35, 42, 143, 0.92) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.industry-sectors-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(201, 169, 97, 0.04) 80px,
        rgba(201, 169, 97, 0.04) 81px
    );
    pointer-events: none;
}
.industry-sectors-section .section-head {
    position: relative;
    z-index: 2;
}
.industry-sectors-section .section-head h2 {
    color: #fff;
}
.industry-sectors-section .section-head h2 em {
    color: var(--gold);
}
.industry-sectors-section .section-eyebrow {
    color: var(--gold);
}
.industry-sectors-section .section-eyebrow::before,
.industry-sectors-section .section-eyebrow::after {
    background: var(--gold);
}
.industry-sectors-section .section-head p {
    color: rgba(255,255,255,0.7);
}

.industry-sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}
@media (max-width: 1024px) {
    .industry-sectors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .industry-sectors-grid { grid-template-columns: 1fr; }
}

.industry-sector-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 32px 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}
.industry-sector-card:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.industry-sector-icon {
    margin-bottom: 14px;
}
.industry-sector-icon i {
    font-size: 36px;
    color: var(--gold);
    transition: color 0.3s;
}
.industry-sector-card:hover .industry-sector-icon i {
    color: var(--navy-deep);
}
.industry-sector-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
}
.industry-sector-count {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.3s;
    font-weight: 600;
}
.industry-sector-card:hover .industry-sector-count {
    color: var(--navy-deep);
}

.industry-sectors-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}
.industry-sectors-cta .btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}
.industry-sectors-cta .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}


/* ============ DATA SOURCE BOX ============ */
.data-source-section {
    padding: 0 0 80px;
}
.data-source-box {
    background: var(--paper);
    border-left: 4px solid var(--gold);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: flex-start;
}
@media (max-width: 720px) {
    .data-source-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.data-source-icon {
    width: 60px;
    height: 60px;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}
.data-source-icon i {
    color: var(--gold);
    font-size: 24px;
}
.data-source-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    margin-bottom: 8px;
    font-weight: 600;
}
.data-source-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* ============ CONTACT CARDS (3 üst kart) ============ */
.contact-cards-section {
    padding: 80px 0 40px;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 1024px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 36px 32px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.08);
}
.contact-card-highlight {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: #fff;
    border-color: var(--navy-deep);
    position: relative;
    overflow: hidden;
}
.contact-card-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(201, 169, 97, 0.04) 40px,
        rgba(201, 169, 97, 0.04) 41px
    );
    pointer-events: none;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 2px solid var(--gold);
    position: relative;
    z-index: 2;
}
.contact-card-highlight .contact-card-icon {
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--gold);
}
.contact-card-icon i {
    color: var(--gold-dark);
    font-size: 28px;
}
.contact-card-highlight .contact-card-icon i {
    color: var(--gold);
}
.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    margin-bottom: 14px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}
.contact-card-highlight h3 {
    color: var(--gold);
}
.contact-card p {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}
.contact-card-highlight p {
    color: rgba(255,255,255,0.9);
}
.contact-card p:last-child {
    margin-bottom: 0;
}
.contact-card-highlight p i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 12px;
}
.contact-card a {
    color: var(--navy-deep);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.contact-card a:hover {
    color: var(--gold-dark);
}
.contact-card-highlight a {
    color: #fff;
}
.contact-card-highlight a:hover {
    color: var(--gold);
}
.muted-text {
    color: var(--muted) !important;
    font-style: italic;
}


/* ============ CONTACT MAIN (Form + Harita) ============ */
.contact-main-section {
    padding: 40px 0 80px;
}
.contact-intro {
    text-align: center;
    margin-bottom: 48px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
@media (max-width: 1024px) {
    .contact-main-grid { grid-template-columns: 1fr; }
}

.contact-form-side .form-card {
    position: static;
}

.contact-map-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Map */
.contact-map-wrapper {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}
.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
}
.map-placeholder i {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 16px;
}
.map-placeholder p {
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}
.map-placeholder small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    max-width: 360px;
}

/* Contact Social */
.contact-social {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px 32px;
}
.contact-social h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--navy-deep);
    margin-bottom: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-social h3 i {
    color: var(--gold-dark);
}
.contact-social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.contact-social-buttons .social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}
.contact-social-buttons .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.contact-social-buttons .twitter { background: #000; }
.contact-social-buttons .youtube { background: #ff0000; }
.contact-social-buttons .whatsapp { background: #25d366; }
/**
 * SANİAD Theme - Ek Stiller 7 (Faz 3.3 Parça D - SON)
 *
 * - Legal Layout (Sidebar + Content)
 * - Legal TOC (Table of Contents - İçindekiler)
 * - Legal Intro Box
 * - Legal Footer
 * - Print Styles
 */

/* ============ LEGAL CONTENT BLOCK ============ */
.legal-content-block {
    padding: 60px 0 100px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: flex-start;
}
.legal-layout.no-toc {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============ LEGAL SIDEBAR (İçindekiler) ============ */
.legal-sidebar {
    position: sticky;
    top: 120px;
}
@media (max-width: 1024px) {
    .legal-sidebar {
        position: static;
    }
}

.legal-toc {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    padding: 28px 24px;
}
.legal-toc h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--navy-deep);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.legal-toc h3 i {
    color: var(--gold-dark);
    font-size: 16px;
}

.legal-toc-nav {
    max-height: 480px;
    overflow-y: auto;
    margin-bottom: 24px;
}
.legal-toc-nav::-webkit-scrollbar {
    width: 4px;
}
.legal-toc-nav::-webkit-scrollbar-track {
    background: var(--paper);
}
.legal-toc-nav::-webkit-scrollbar-thumb {
    background: var(--gold);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}
.toc-item {
    position: relative;
    counter-increment: toc-counter;
}
.toc-item a {
    display: block;
    padding: 10px 12px 10px 32px;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    border-left: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}
.toc-item a::before {
    content: counter(toc-counter, decimal-leading-zero);
    position: absolute;
    left: 8px;
    top: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 13px;
}
.toc-item a:hover {
    background: var(--paper);
    color: var(--navy-deep);
}
.toc-item a.active {
    background: var(--paper);
    color: var(--navy-deep);
    border-left-color: var(--gold);
    font-weight: 600;
}
.toc-h3 a {
    padding-left: 44px;
    font-size: 12px;
    color: var(--muted);
}
.toc-h3 a::before {
    left: 20px;
    font-size: 11px;
}

/* Legal Meta */
.legal-meta {
    padding: 16px;
    background: var(--paper);
    margin-bottom: 16px;
}
.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding: 4px 0;
}
.meta-row strong {
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.meta-row span {
    color: var(--navy-deep);
    font-weight: 600;
}

/* Print Button */
.legal-print-btn {
    width: 100%;
    background: var(--navy-deep);
    color: var(--gold);
    border: 2px solid var(--navy-deep);
    padding: 12px 16px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}
.legal-print-btn:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}


/* ============ LEGAL CONTENT (Ana İçerik) ============ */
.legal-content {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    padding: 0;
    overflow: hidden;
}

/* Legal Intro */
.legal-intro {
    background: var(--paper);
    padding: 24px 32px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
    .legal-intro {
        padding: 20px 24px;
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.legal-intro-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 720px) {
    .legal-intro-icon {
        margin: 0 auto;
    }
}
.legal-intro-icon i {
    color: var(--gold);
    font-size: 20px;
}
.legal-intro-text p {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Legal Body */
.legal-body {
    padding: 40px 48px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.85;
}
@media (max-width: 720px) {
    .legal-body {
        padding: 28px 24px;
    }
}

.legal-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--navy-deep);
    margin: 32px 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
    scroll-margin-top: 120px;
}
.legal-body h2:first-child {
    margin-top: 0;
}
.legal-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    margin: 24px 0 14px;
    font-weight: 600;
    scroll-margin-top: 120px;
}
.legal-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--navy-deep);
    margin: 20px 0 10px;
    font-weight: 600;
}
.legal-body p {
    margin-bottom: 16px;
    color: var(--ink);
}
.legal-body ul,
.legal-body ol {
    margin: 14px 0 20px 24px;
    color: var(--ink);
}
.legal-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}
.legal-body strong,
.legal-body b {
    color: var(--navy-deep);
    font-weight: 700;
}
.legal-body a {
    color: var(--gold-dark);
    text-decoration: underline;
    transition: color 0.3s;
}
.legal-body a:hover {
    color: var(--navy-deep);
}
.legal-body blockquote {
    background: var(--paper);
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 24px 0;
    color: var(--ink);
    font-style: italic;
}
.legal-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    background: #fff;
}
.legal-body table th {
    background: var(--navy-deep);
    color: var(--gold);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.legal-body table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}
.legal-body table tr:nth-child(even) td {
    background: var(--paper);
}

/* Legal Footer */
.legal-footer {
    background: var(--paper);
    padding: 24px 32px;
    border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
    .legal-footer {
        padding: 20px 24px;
    }
}
.legal-footer p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}
.legal-footer p i {
    color: var(--gold-dark);
    margin-right: 8px;
}
.legal-footer a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    transition: gap 0.3s;
}
.legal-footer a:hover {
    gap: 12px;
    color: var(--navy-deep);
}


/* Baskanin Mesaji */
.president-message-page .page-hero {
    min-height: 400px;
}
.president-message-page .page-hero-inner {
    padding: 80px 32px;
}
.president-message-page .page-hero-title {
    font-size: 64px;
    margin-bottom: 24px;
}
.president-message-page .page-hero p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    margin-bottom: 32px;
}
.president-message-block {
    padding: 96px 0;
    background: var(--cream);
}
.president-message-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
    gap: 72px;
    align-items: start;
}
.president-card {
    position: sticky;
    top: 130px;
}
.president-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e9e5dc;
}
.president-photo::before,
.president-photo::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}
.president-photo::before {
    top: 0;
    left: 0;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
}
.president-photo::after {
    right: 0;
    bottom: 0;
    border-right: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.president-photo-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 96px;
    background: linear-gradient(135deg, #f7f3ea, #e8e0cf);
}
.president-info {
    background: var(--navy-deep);
    color: #fff;
    padding: 38px 42px;
    border-top: 5px solid var(--gold);
}
.president-info .role {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.president-info h3 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 22px;
}
.president-info .term {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.86);
    font-weight: 600;
}
.president-info .term i {
    color: var(--gold);
}
.president-message-content {
    position: relative;
    background: #fff;
    border: 1px solid rgba(26, 35, 126, 0.12);
    padding: 58px 58px 52px;
}
.president-message-content::before {
    content: "\201C";
    position: absolute;
    top: 28px;
    left: 42px;
    font-family: Georgia, serif;
    font-size: 118px;
    line-height: 1;
    color: rgba(201, 169, 97, 0.18);
    pointer-events: none;
}
.president-message-content .message-greeting {
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 31px;
    line-height: 1.25;
    margin-bottom: 34px;
}
.president-message-content .lead {
    border-left: 3px solid var(--gold);
    background: var(--paper);
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-style: italic;
    line-height: 1.52;
    padding: 28px 36px;
    margin-bottom: 38px;
}
.president-message-content .message-body {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}
.president-message-content .message-body p {
    margin-bottom: 24px;
}
.president-message-content .message-body strong {
    color: var(--navy-deep);
    font-weight: 600;
}
.president-message-page .signature {
    margin-top: 44px;
    padding-top: 38px;
    border-top: 1px solid var(--line);
}
.president-message-page .signature-name {
    font-family: 'Dancing Script', cursive;
    color: var(--navy-deep);
    font-size: 54px;
    line-height: 1;
    margin-bottom: 18px;
}
.president-message-page .signature-info .name {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 25px;
    font-weight: 600;
}
.president-message-page .signature-info .title {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .president-message-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .president-card {
        position: static;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    .president-message-content {
        padding: 48px 42px;
    }
}

@media (max-width: 768px) {
    .president-message-page .page-hero {
        min-height: 340px;
    }
    .president-message-page .page-hero-inner {
        padding: 80px 32px;
    }
    .president-message-page .page-hero-title {
        font-size: 42px;
    }
    .president-message-page .page-hero p {
        font-size: 16px;
    }
    .president-message-block {
        padding: 56px 0;
    }
    .president-info {
        padding: 30px 28px;
    }
    .president-info h3 {
        font-size: 32px;
    }
    .president-message-content {
        padding: 40px 28px;
    }
    .president-message-content::before {
        top: 22px;
        left: 24px;
        font-size: 86px;
    }
    .president-message-content .message-greeting {
        font-size: 26px;
    }
    .president-message-content .lead {
        font-size: 23px;
        padding: 22px 24px;
    }
    .president-message-content .message-body {
        font-size: 16px;
    }
    .president-message-page .signature-name {
        font-size: 44px;
    }
}

@media (max-width: 480px) {
    .president-message-page .page-hero-title {
        font-size: 38px;
    }
    .president-info .role {
        letter-spacing: 4px;
    }
    .president-message-content {
        padding: 34px 22px;
    }
    .president-message-content .lead {
        font-size: 21px;
        padding: 20px 18px;
    }
}

/* ============ PRINT STYLES ============ */
@media print {
    .site-header,
    .site-footer,
    .legal-sidebar,
    .breadcrumb,
    .page-hero-eyebrow,
    .legal-footer,
    .legal-print-btn {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }

    .page-hero {
        background: #fff !important;
        color: #000 !important;
        padding: 20px 0 !important;
        border-bottom: 2px solid #000 !important;
    }
    .page-hero-title {
        color: #000 !important;
        font-size: 28px !important;
    }
    .legal-content-block {
        padding: 20px 0 !important;
    }
    .legal-layout {
        display: block !important;
    }
    .legal-content {
        border: 0 !important;
        background: #fff !important;
    }
    .legal-intro {
        background: #f5f5f5 !important;
        border: 1px solid #ccc !important;
    }
    .legal-body {
        padding: 20px 0 !important;
    }
    .legal-body h2 {
        page-break-after: avoid;
        color: #000 !important;
        border-bottom: 1px solid #000 !important;
    }
    .legal-body h3 {
        page-break-after: avoid;
        color: #000 !important;
    }
    .legal-body p {
        page-break-inside: avoid;
        color: #000 !important;
    }
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
}
/**
 * Footer Bottom Layout Override
 *
 * Sol: Telif yazısı
 * Orta: Sosyal medya + yasal menü
 * Sağ: Geliştirici bilgisi
 */

/* Footer Bottom — Yeni Grid Layout */
.footer-bottom {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 32px !important;
    align-items: center;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-bottom .footer-copyright {
    text-align: left;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom-center {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom .footer-developer {
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}
.footer-bottom .footer-developer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.footer-bottom .footer-developer a:hover {
    color: var(--gold-light);
}

/* Yasal menü */
.footer-legal-links .footer-legal-menu {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.footer-legal-links .footer-legal-menu a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal-links .footer-legal-menu a:hover {
    color: var(--gold);
}

/* Sosyal Medya */
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 13px;
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-bottom {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 20px !important;
    }
    .footer-bottom .footer-copyright,
    .footer-bottom .footer-developer {
        text-align: center;
    }
    .footer-bottom-center {
        justify-content: center;
    }
}

/* Vizyon & Misyon final spacing/width overrides */
.vision-mission-page .vision-mission-cards-section {
    padding: 120px 0 110px !important;
    overflow: hidden;
}

.vision-mission-page .goals-section {
    padding: 110px 0 125px !important;
    overflow: hidden;
}

.vision-mission-page .vision-mission-cards-section > .container,
.vision-mission-page .goals-section > .container {
    width: 100%;
    max-width: 1180px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
}

.vision-mission-page .vm-grid {
    width: 100%;
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px !important;
}

.vision-mission-page .vm-card {
    min-width: 0;
    padding: 56px 48px !important;
}

.vision-mission-page .goals-grid {
    width: 100%;
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.vision-mission-page .goal-item {
    min-width: 0;
}

@media (max-width: 1024px) {
    .vision-mission-page .vm-grid,
    .vision-mission-page .goals-grid {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
    }
}

@media (max-width: 720px) {
    .vision-mission-page .vision-mission-cards-section {
        padding: 72px 0 76px !important;
    }

    .vision-mission-page .goals-section {
        padding: 76px 0 84px !important;
    }

    .vision-mission-page .vision-mission-cards-section > .container,
    .vision-mission-page .goals-section > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .vision-mission-page .vm-card {
        padding: 40px 28px !important;
    }
}

/* Tüzük page */
.bylaws-page .page-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.86) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.bylaws-section {
    padding: 105px 0 120px !important;
    background: var(--cream);
    overflow: hidden;
}

.bylaws-container {
    max-width: 1100px !important;
}

.bylaws-download-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(26, 35, 126, 0.1);
    border-top: 4px solid var(--gold);
    padding: 34px 38px;
    margin-bottom: 90px;
}

.bylaws-download-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold-dark);
    font-size: 32px;
    flex: 0 0 auto;
}

.bylaws-document-label,
.bylaws-section-eyebrow,
.org-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.bylaws-download-info h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy);
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.bylaws-download-info p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.bylaws-download-info p span {
    color: var(--gold);
    margin: 0 8px;
}

.bylaws-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 28px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bylaws-download-btn:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.bylaws-download-btn.is-disabled {
    cursor: default;
    opacity: 0.55;
}

.bylaws-sections-head,
.org-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 58px;
}

.bylaws-section-eyebrow::before,
.bylaws-section-eyebrow::after,
.org-section-eyebrow::before,
.org-section-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.bylaws-sections-head h2,
.org-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy);
    font-size: 52px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.bylaws-sections-head p,
.org-section-head p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.bylaws-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.bylaws-section-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
    background: #fff;
    border-left: 3px solid var(--gold);
    padding: 30px 34px;
    min-width: 0;
}

.bylaws-section-num {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-dark);
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
}

.bylaws-section-content h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 10px;
}

.bylaws-section-content p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Organizasyon şeması page */
.org-page .page-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.86) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.org-section {
    padding: 110px 0 125px !important;
    background: var(--cream);
    overflow: hidden;
}

.org-chart {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 0 0;
}

.org-level {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 58px;
}

.org-level:last-child {
    margin-bottom: 0;
}

.org-box {
    position: relative;
    z-index: 2;
    width: 260px;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(26, 35, 126, 0.12);
    border-top: 4px solid var(--gold);
    padding: 24px 22px;
    box-shadow: 0 18px 45px rgba(26, 35, 126, 0.06);
}

.org-box span {
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.org-box h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.15;
    margin: 0;
}

.org-level::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -58px;
    width: 1px;
    height: 58px;
    background: rgba(201, 169, 97, 0.55);
}

.org-level-1::before {
    display: none;
}

.org-level-2::after,
.org-level-4::after,
.org-level-5::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: calc(100% - 260px);
    height: 1px;
    max-width: 560px;
    transform: translateX(-50%);
    background: rgba(201, 169, 97, 0.55);
}

.org-level-5::after {
    max-width: 670px;
}

.org-level-2 .org-box::before,
.org-level-4 .org-box::before,
.org-level-5 .org-box::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -30px;
    width: 1px;
    height: 30px;
    background: rgba(201, 169, 97, 0.55);
}

.org-level-2 .org-box:first-child,
.org-level-3 .org-box {
    background: var(--navy);
}

.org-level-2 .org-box:first-child h4,
.org-level-3 .org-box h4 {
    color: #fff;
}

.org-level-2 .org-box:first-child span,
.org-level-3 .org-box span {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .bylaws-download-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .bylaws-download-btn {
        grid-column: 2;
        justify-self: start;
    }

    .org-level {
        gap: 22px;
    }

    .org-box {
        width: 230px;
    }
}

@media (max-width: 768px) {
    .bylaws-section,
    .org-section {
        padding: 74px 0 86px !important;
    }

    .bylaws-download-card,
    .bylaws-sections-grid,
    .bylaws-section-item {
        grid-template-columns: 1fr;
    }

    .bylaws-download-card {
        padding: 30px 24px;
        margin-bottom: 68px;
    }

    .bylaws-download-btn {
        grid-column: auto;
        width: 100%;
    }

    .bylaws-sections-head h2,
    .org-section-head h2 {
        font-size: 40px;
    }

    .org-chart {
        max-width: 520px;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
        gap: 26px;
        margin-bottom: 52px;
    }

    .org-level::before,
    .org-level-2::after,
    .org-level-4::after,
    .org-level-5::after,
    .org-level-2 .org-box::before,
    .org-level-4 .org-box::before,
    .org-level-5 .org-box::before {
        display: none;
    }

    .org-box {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .bylaws-download-card {
        gap: 22px;
    }

    .bylaws-download-info h3,
    .org-box h4 {
        font-size: 25px;
    }

    .bylaws-sections-head h2,
    .org-section-head h2 {
        font-size: 34px;
    }
}

/* Üye firmalar / firma kataloğu */
.member-directory-page .page-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.86) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.member-directory-section {
    padding: 82px 0 110px !important;
    background: var(--cream);
}

.member-directory-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    padding: 24px 28px;
    margin-bottom: 34px;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.04);
}

.member-search-input {
    position: relative;
}

.member-search-input i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 14px;
}

.member-search-input input {
    width: 100%;
    height: 52px;
    padding: 0 18px 0 48px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    outline: none;
    transition: all 0.3s ease;
}

.member-search-input input:focus,
.member-filter-select select:focus {
    border-color: var(--gold);
    background: #fff;
}

.member-filter-select {
    position: relative;
}

.member-filter-select::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-dark);
    font-size: 12px;
    pointer-events: none;
}

.member-filter-select select {
    min-width: 230px;
    height: 52px;
    padding: 0 48px 0 20px;
    appearance: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-deep);
    background: var(--cream);
    border: 1px solid var(--line);
    outline: none;
    cursor: pointer;
}

.member-directory-result-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.member-directory-count {
    color: var(--muted);
    font-size: 14px;
}

.member-directory-count strong {
    color: var(--navy-deep);
    font-weight: 800;
}

.member-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.member-directory-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.35s ease;
}

.member-directory-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.member-directory-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
}

.member-directory-card:hover::before {
    transform: scaleX(1);
}

.member-directory-logo {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.member-directory-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.08);
    transition: all 0.45s ease;
}

.member-directory-card:hover .member-directory-logo img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.member-directory-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 22px;
}

.member-directory-sector {
    align-self: flex-start;
    display: inline-flex;
    color: var(--gold-dark);
    background: var(--paper);
    border: 1px solid rgba(201, 169, 97, 0.3);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 5px 10px;
    margin-bottom: 12px;
}

.member-directory-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 18px;
    min-height: 56px;
    transition: color 0.3s ease;
}

.member-directory-card:hover .member-directory-body h3 {
    color: var(--gold-dark);
}

.member-directory-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.3s ease;
}

.member-directory-card:hover .member-directory-link {
    gap: 14px;
    color: var(--navy-deep);
}

.member-directory-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 280px;
    padding: 70px 24px;
    background: #fff;
    border: 1px solid var(--line);
}

.member-directory-empty[hidden] {
    display: none;
}

.member-directory-empty i {
    color: rgba(26, 35, 126, 0.25);
    font-size: 56px;
    margin-bottom: 20px;
}

.member-directory-empty h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-size: 30px;
    margin: 0 0 8px;
}

.member-directory-empty p {
    color: var(--muted);
    margin: 0;
}

@media (max-width: 1180px) {
    .member-directory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .member-directory-filter {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .member-filter-select select {
        width: 100%;
    }

    .member-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .member-directory-section {
        padding: 62px 0 78px !important;
    }

    .member-directory-filter {
        padding: 20px;
    }

    .member-directory-grid {
        grid-template-columns: 1fr;
    }

    .member-directory-body h3 {
        min-height: 0;
    }
}

/* Firma detay sayfasi */
.member-detail-page .detail-hero {
    position: relative;
    padding: 50px 0;
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.92) 0%, rgba(35, 42, 143, 0.85) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop') center/cover;
    color: #fff;
    overflow: hidden;
}

.member-detail-page .detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(201, 169, 97, 0.04) 80px,
        rgba(201, 169, 97, 0.04) 81px
    );
    pointer-events: none;
}

.member-detail-page .detail-hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.member-detail-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
    margin-bottom: 16px;
}

.member-detail-page .back-link:hover {
    color: var(--gold);
}

.member-detail-page .back-link i {
    font-size: 11px;
}

.member-detail-page .detail-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.member-detail-page .detail-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.3s;
}

.member-detail-page .detail-hero .breadcrumb a:hover,
.member-detail-page .detail-hero .breadcrumb .current {
    color: var(--gold);
}

.member-detail-page .detail-hero .breadcrumb i {
    color: var(--gold);
    font-size: 10px;
}

.member-detail-block {
    padding: 80px 0 100px;
    background: var(--cream);
}

.company-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

.company-logo-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 48px;
    text-align: center;
    position: sticky;
    top: 140px;
}

.company-logo-card::before {
    content: '';
    display: block;
    height: 4px;
    width: calc(100% + 96px);
    margin: -48px -48px 32px;
    background: var(--gold);
}

.company-logo {
    aspect-ratio: 4 / 3;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    margin-bottom: 28px;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.company-sector-badge {
    display: inline-flex;
    padding: 8px 18px;
    background: var(--paper);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 18px;
    transition: all 0.3s;
}

.company-sector-badge:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.company-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.company-member-since {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.company-member-since strong {
    color: var(--navy-deep);
    font-weight: 800;
}

.company-detail-main {
    min-width: 0;
}

.company-info-section {
    margin-bottom: 40px;
}

.company-info-section:last-child {
    margin-bottom: 0;
}

.info-section-head {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.info-eyebrow {
    color: var(--gold-dark);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.company-description {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.85;
}

.company-description p {
    margin-bottom: 18px;
}

.company-description p:last-child {
    margin-bottom: 0;
}

.company-description .company-excerpt {
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.65;
    background: var(--paper);
    border-left: 3px solid var(--gold);
    padding: 24px 30px;
    margin-bottom: 26px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-item {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.08);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: var(--gold);
    color: var(--navy-deep);
}

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    color: var(--navy-deep);
    font-weight: 500;
    word-wrap: break-word;
    line-height: 1.45;
}

.contact-value span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 3px;
}

.contact-value a {
    color: var(--navy-deep);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--gold-dark);
}

.social-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-link {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--navy-deep);
    color: var(--gold);
    border-color: var(--navy-deep);
    transform: translateY(-4px);
}

.member-detail-related .member-directory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1180px) {
    .company-grid {
        grid-template-columns: 360px minmax(0, 1fr);
        gap: 44px;
    }
}

@media (max-width: 1024px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-logo-card {
        position: static;
        max-width: 480px;
        margin: 0 auto;
    }

    .member-detail-related .member-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .member-detail-page .detail-hero {
        padding: 42px 0;
    }

    .member-detail-page .detail-hero-inner {
        padding: 0 24px;
    }

    .member-detail-block {
        padding: 56px 0 76px;
    }

    .company-logo-card {
        padding: 32px;
    }

    .company-logo-card::before {
        width: calc(100% + 64px);
        margin: -32px -32px 24px;
    }

    .company-name {
        font-size: 28px;
    }

    .info-section-head h2 {
        font-size: 24px;
    }

    .company-description .company-excerpt {
        font-size: 19px;
        padding: 20px 22px;
    }

    .contact-grid,
    .member-detail-related .member-directory-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 22px;
    }
}

/* Sektorel dagilim sayfasi */
.sector-distribution-page .page-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.sectors-overview-section {
    padding: 100px 0 !important;
    background: var(--cream);
}

.sector-overview-intro {
    color: var(--muted);
    font-size: 16px;
    max-width: 760px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.sector-overview-intro p {
    margin: 0 0 12px;
}

.sector-overview-intro p:last-child {
    margin-bottom: 0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.sector-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    padding: 40px 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
    border-color: var(--gold);
}

.sector-card:hover::before {
    transform: scaleX(1);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold-dark);
    font-size: 32px;
    transition: all 0.4s;
}

.sector-card:hover .sector-icon {
    background: var(--gold);
    color: var(--navy-deep);
    transform: rotate(8deg);
}

.sector-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.2;
}

.sector-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--gold-dark);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

.sector-count-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .sectors-overview-section {
        padding: 70px 0 !important;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .sector-card {
        padding: 32px 20px;
    }

    .sector-icon {
        width: 68px;
        height: 68px;
        font-size: 27px;
    }
}

@media (max-width: 460px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* Uyelik sartlari sayfasi */
.membership-conditions-page .page-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.membership-conditions-section,
.membership-documents-section {
    padding: 100px 0 !important;
    background: var(--cream);
}

.membership-conditions-page .container {
    max-width: 1100px;
}

.membership-intro {
    color: var(--muted);
    font-size: 16px;
    max-width: 720px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.membership-intro p {
    margin: 0 0 12px;
}

.membership-intro p:last-child {
    margin-bottom: 0;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.condition-item {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s;
}

.condition-item:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.08);
}

.condition-check {
    width: 36px;
    height: 36px;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.condition-item:hover .condition-check {
    background: var(--gold);
    color: var(--navy-deep);
}

.condition-text {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
    padding-top: 4px;
}

.condition-text strong {
    color: var(--navy-deep);
    font-weight: 700;
}

.membership-steps-section {
    background: var(--paper);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 76px;
    height: 76px;
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--navy-deep);
    font-weight: 700;
    transition: all 0.3s;
}

.step-item:hover .step-num {
    background: var(--gold);
    color: var(--navy-deep);
    transform: scale(1.05);
}

.step-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--navy-deep);
    font-weight: 600;
    margin: 0 0 10px;
}

.step-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.document-item {
    background: #fff;
    border: 1px solid var(--line);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s;
}

.document-item:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.document-item i {
    color: var(--gold-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.document-item span {
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
}

.apply-cta {
    margin-top: 64px;
    text-align: center;
    padding: 48px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--gold);
}

.apply-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--navy-deep);
    font-weight: 600;
    margin: 0 0 12px;
}

.apply-cta p {
    color: var(--muted);
    font-size: 15px;
    margin: 0 auto 28px;
    max-width: 540px;
    line-height: 1.7;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.btn-apply:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy-deep);
}

@media (max-width: 1024px) {
    .conditions-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }

    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 720px) {
    .membership-conditions-section,
    .membership-documents-section {
        padding: 70px 0 !important;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .apply-cta {
        padding: 32px 24px;
    }

    .btn-apply {
        width: 100%;
        justify-content: center;
        padding: 16px 22px;
    }
}

/* ==========================================================================
   Membership Application
   ========================================================================== */

.membership-application-hero {
    background-image: linear-gradient(rgba(26, 35, 126, 0.86), rgba(26, 35, 126, 0.82)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1920&auto=format&fit=crop');
}

.membership-application-section {
    background: var(--paper);
    padding: 92px 0 110px;
}

.membership-application-container {
    max-width: 1100px;
}

.application-notice {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 18px 22px;
    margin-bottom: 24px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
}

.application-notice i {
    font-size: 20px;
    flex-shrink: 0;
}

.application-notice-success {
    border-left: 4px solid #2f8f46;
}

.application-notice-success i {
    color: #2f8f46;
}

.application-notice-error {
    border-left: 4px solid #b3261e;
}

.application-notice-error i {
    color: #b3261e;
}

.membership-application-page .info-banner {
    display: flex;
    gap: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    padding: 28px 32px;
    margin-bottom: 38px;
}

.membership-application-page .info-banner-icon {
    width: 52px;
    height: 52px;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 20px;
    flex-shrink: 0;
}

.membership-application-page .info-banner-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--navy-deep);
    font-weight: 600;
    margin: 0 0 10px;
}

.membership-application-page .info-banner-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.membership-application-page .info-banner-content a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
}

.membership-application-intro {
    margin: 0 0 36px;
}

.membership-application-form {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--gold);
    padding: 52px;
}

.membership-application-form-embed .wpcf7-form h3 {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--navy-deep);
}

.membership-application-form-embed .wpcf7-form h3:not(:first-child) {
    padding-top: 42px;
    margin-top: 42px;
    border-top: 1px solid var(--line);
}

.membership-application-form-embed .saniad-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 26px;
}

.membership-application-form-embed .wpcf7 label {
    color: var(--navy-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.membership-application-form-embed .wpcf7 input:not([type="submit"]):not([type="checkbox"]),
.membership-application-form-embed .wpcf7 textarea,
.membership-application-form-embed .wpcf7 select {
    margin-top: 9px;
    padding: 15px 16px;
    background: #fff;
    font-size: 15px;
}

.membership-application-form-embed .wpcf7 textarea {
    min-height: 118px;
}

.membership-application-form-embed .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    text-transform: none;
    letter-spacing: 0;
}

.membership-application-form-embed .wpcf7-acceptance input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--navy);
    flex-shrink: 0;
}

.membership-application-page .form-section {
    padding-bottom: 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid var(--line);
}

.membership-application-page .form-section:last-of-type {
    margin-bottom: 0;
}

.membership-application-page .form-section-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.membership-application-page .form-section-num {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.membership-application-page .form-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--navy-deep);
    font-weight: 600;
    margin: 0;
}

.membership-application-page .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 26px;
}

.membership-application-page .form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.membership-application-page .form-field.full {
    grid-column: 1 / -1;
}

.membership-application-page .form-label {
    color: var(--navy-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.membership-application-page .form-label span {
    color: var(--gold-dark);
}

.membership-application-page .form-input,
.membership-application-page .form-select,
.membership-application-page .form-textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    padding: 15px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.membership-application-page .form-input:focus,
.membership-application-page .form-select:focus,
.membership-application-page .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(211, 178, 104, 0.18);
}

.membership-application-page .form-textarea {
    resize: vertical;
    min-height: 118px;
}

.membership-application-page .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    cursor: pointer;
}

.membership-application-page .form-checkbox + .form-checkbox {
    margin-top: 14px;
}

.membership-application-page .form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--navy);
    flex-shrink: 0;
}

.membership-application-page .form-checkbox a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
}

.membership-application-page .form-checkbox strong {
    color: var(--gold-dark);
}

.form-submit-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 34px;
}

.form-submit-area p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: var(--navy-deep);
    min-width: 220px;
    padding: 17px 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.saniad-form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 900px) {
    .membership-application-form {
        padding: 38px 28px;
    }

    .membership-application-page .form-grid {
        grid-template-columns: 1fr;
    }

    .membership-application-form-embed .saniad-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .membership-application-section {
        padding: 70px 0;
    }

    .membership-application-page .info-banner {
        flex-direction: column;
        padding: 24px;
    }

    .membership-application-form {
        padding: 30px 22px;
    }

    .membership-application-page .form-section-head {
        align-items: flex-start;
    }

    .membership-application-page .form-section-head h2 {
        font-size: 27px;
    }

    .form-submit-area {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-submit {
        width: 100%;
    }
}

/* ==========================================================================
   News Archive and Single
   ========================================================================== */

.news-page-hero {
    background-image: linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(35, 42, 143, 0.78)), url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?q=80&w=1920&auto=format&fit=crop');
}

.press-page-hero {
    background-image: linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(35, 42, 143, 0.78)), url('https://images.unsplash.com/photo-1495020689067-958852a7765e?q=80&w=1920&auto=format&fit=crop');
}

.news-archive-section {
    background: var(--cream);
    padding: 80px 0 100px;
}

.news-filter-bar {
    background: #fff;
    border: 1px solid var(--line);
    padding: 24px 28px;
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 24px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.04);
}

.news-search-form {
    min-width: 0;
}

.news-filter-bar .search-input {
    position: relative;
    display: block;
}

.news-filter-bar .search-input i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 14px;
}

.news-filter-bar input[type="search"] {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.news-filter-bar input[type="search"]:focus {
    border-color: var(--gold);
    background: #fff;
}

.news-filter-tabs {
    justify-content: flex-end;
}

.news-listing {
    display: block;
}

.featured-news {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    margin-bottom: 64px;
    background: #fff;
    border: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s;
}

.featured-news::before,
.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    z-index: 2;
}

.featured-news:hover {
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.12);
}

.featured-news:hover::before,
.news-card:hover::before {
    transform: scaleX(1);
}

.featured-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.featured-image img,
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s;
}

.featured-news:hover .featured-image img,
.news-card:hover .news-image img {
    transform: scale(1.06);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 800;
    z-index: 2;
}

.featured-body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta,
.press-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.news-meta i,
.press-meta i {
    color: var(--gold-dark);
    margin-right: 6px;
    font-size: 11px;
}

.news-category,
.press-source {
    color: var(--gold-dark);
    font-weight: 800;
}

.featured-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
    margin: 18px 0 20px;
    letter-spacing: -0.01em;
}

.featured-body p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 24px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: gap 0.3s, color 0.3s;
}

.featured-news:hover .read-more,
.news-card:hover .read-more {
    gap: 16px;
    color: var(--navy-deep);
}

.news-archive-page .news-grid,
.news-related-section .news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.news-card {
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
}

.news-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper);
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    color: var(--gold-dark);
    font-size: 44px;
}

.news-body {
    padding: 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card .news-meta {
    margin-bottom: 14px;
    font-size: 11px;
}

.news-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 14px;
    flex: 1;
}

.news-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .read-more {
    font-size: 11px;
}

.press-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.press-card {
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 36px;
    padding: 32px;
    align-items: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s;
}

.press-card:hover {
    transform: translateX(8px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
    border-color: var(--gold);
}

.press-card:hover::before {
    transform: scaleY(1);
}

.press-logo {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    padding: 16px 24px;
}

.press-logo img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter 0.4s;
}

.press-card:hover .press-logo img {
    filter: grayscale(0);
}

.press-logo-text {
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

.press-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.25;
    margin: 12px 0;
}

.press-body p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.press-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 56px;
}

.pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy-deep);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--gold);
}

.article-hero {
    background-image: linear-gradient(135deg, rgba(26, 35, 126, 0.92), rgba(35, 42, 143, 0.85)), url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?q=80&w=1920&auto=format&fit=crop');
    color: #fff;
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}

.press-article-hero {
    background-image: linear-gradient(135deg, rgba(26, 35, 126, 0.92), rgba(35, 42, 143, 0.85));
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(201, 169, 97, 0.04) 80px, rgba(201, 169, 97, 0.04) 81px);
    pointer-events: none;
}

.article-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
    margin-bottom: 28px;
}

.back-link:hover {
    color: var(--gold);
}

.article-category {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 24px;
}

.press-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 12px 20px;
    margin-bottom: 24px;
    color: #fff;
}

.press-source-badge .src-label {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
}

.article-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 28px;
    color: #fff;
}

.article-meta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 1px;
}

.article-meta i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 12px;
}

.article-meta-sep {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}

.single-news-section {
    background: var(--cream);
    padding: 80px 0 100px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 64px;
    max-width: 1180px;
    margin: 0 auto;
}

.article-content {
    background: #fff;
    padding: 56px 64px;
    border: 1px solid var(--line);
}

.article-featured-img {
    margin: -56px -64px 48px;
}

.article-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 22px;
}

.article-content p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 1.55;
    color: var(--navy-deep);
    font-weight: 500;
    font-style: italic;
    padding: 24px 28px;
    background: var(--paper);
    border-left: 3px solid var(--gold);
    margin: 0 0 32px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    line-height: 1.3;
    margin: 36px 0 18px;
}

.article-content h2 {
    font-size: 32px;
}

.article-content h3 {
    font-size: 26px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 24px 24px;
    color: var(--ink);
    line-height: 1.85;
}

.article-content blockquote {
    margin: 32px 0;
    padding: 28px 36px;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.5;
}

.article-share {
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-share span {
    color: var(--navy-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-right: 8px;
}

.article-share a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    color: var(--navy-deep);
    text-decoration: none;
    transition: all 0.3s;
}

.article-share a:hover {
    background: var(--navy-deep);
    color: var(--gold);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.article-sidebar .sidebar-widget {
    background: #fff;
    padding: 28px;
    border: 1px solid var(--line);
}

.article-sidebar .sidebar-widget h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy-deep);
    margin: 0 0 20px;
}

.article-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.article-info-list li {
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
}

.article-info-list span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 3px;
}

.article-info-list strong {
    color: var(--navy-deep);
    font-size: 14px;
}

.source-link {
    width: 100%;
    justify-content: center;
}

.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-news-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.sidebar-news-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--paper);
}

.sidebar-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-news-date {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.sidebar-news-content h5 {
    color: var(--navy-deep);
    font-size: 14px;
    line-height: 1.35;
    margin: 0;
    transition: color 0.3s;
}

.sidebar-news-item:hover h5 {
    color: var(--gold-dark);
}

.sidebar-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 22px;
}

.news-related-section {
    background: var(--paper);
}

@media (max-width: 1100px) {
    .news-filter-bar {
        grid-template-columns: 1fr;
    }

    .news-filter-tabs {
        justify-content: flex-start;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 980px) {
    .featured-news,
    .press-card {
        grid-template-columns: 1fr;
    }

    .press-action {
        justify-content: flex-start;
    }

    .news-archive-page .news-grid,
    .news-related-section .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .news-archive-section,
    .single-news-section {
        padding: 70px 0;
    }

    .news-filter-bar {
        padding: 20px;
    }

    .featured-body,
    .press-card,
    .article-content,
    .article-sidebar .sidebar-widget {
        padding: 28px 24px;
    }

    .article-featured-img {
        margin: -28px -24px 30px;
    }

    .featured-body h2,
    .article-hero h1 {
        font-size: 34px;
    }

    .press-body h3 {
        font-size: 24px;
    }

    .news-archive-page .news-grid,
    .news-related-section .news-grid {
        grid-template-columns: 1fr;
    }

    .article-share {
        flex-wrap: wrap;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

/* Etkinlikler sprinti */
.events-page-hero {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 126, 0.86), rgba(35, 42, 143, 0.78)),
        url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?q=80&w=1920&auto=format&fit=crop');
}

.past-events-hero {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 126, 0.86), rgba(35, 42, 143, 0.78)),
        url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=1920&auto=format&fit=crop');
}

.events-archive-section,
.event-detail-section {
    background: var(--cream);
    padding: 80px 0 100px;
}

.event-filter-bar {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    padding: 20px;
    margin-bottom: 44px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.04);
}

.event-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.event-filter-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 22px;
    background: var(--paper);
    color: var(--navy-deep);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.event-filter-tabs a:hover,
.event-filter-tabs a.active {
    background: var(--navy-deep);
    color: var(--gold);
}

.event-search-form {
    position: relative;
}

.event-search-form i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 14px;
}

.event-search-form input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
}

.event-search-form input:focus {
    background: #fff;
    border-color: var(--gold);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.events-list .event-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    background: #fff;
    border: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
}

.events-list .event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    z-index: 2;
}

.events-list .event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.12);
}

.events-list .event-card:hover::before {
    transform: scaleX(1);
}

.event-image {
    aspect-ratio: 16 / 11;
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.event-image img,
.past-event-image img,
.event-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-image img {
    transition: transform 0.7s;
}

.events-list .event-card:hover .event-image img {
    transform: scale(1.06);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    min-width: 80px;
    background: #fff;
    border-top: 3px solid var(--gold);
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.event-date-badge .day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--navy-deep);
    font-weight: 700;
    line-height: 1;
}

.event-date-badge .month {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.event-type-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 800;
}

.event-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.event-meta i {
    color: var(--gold-dark);
    font-size: 11px;
}

.event-body h3,
.past-event-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.event-body h3 {
    font-size: 26px;
    margin: 0 0 14px;
}

.event-body p,
.past-event-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
}

.event-body p {
    margin: 0 0 20px;
}

.event-cta,
.past-event-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.events-list .event-card:hover .event-cta,
.past-event-card:hover .past-event-cta {
    gap: 16px;
    color: var(--navy-deep);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.past-event-card {
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.past-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    z-index: 2;
}

.past-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
}

.past-event-card:hover::before {
    transform: scaleX(1);
}

.past-event-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: var(--paper);
}

.past-event-image img {
    filter: grayscale(0.15);
    transition: transform 0.6s, filter 0.6s;
}

.past-event-card:hover .past-event-image img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.past-event-image::after {
    content: 'Gerçekleşti';
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(26, 35, 126, 0.9);
    color: var(--gold-light);
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 800;
}

.past-event-body {
    padding: 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.past-event-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-weight: 700;
}

.past-event-meta i {
    color: var(--gold-dark);
    margin-right: 6px;
    font-size: 10px;
}

.past-event-meta .event-type {
    color: var(--gold-dark);
}

.past-event-card h3 {
    font-size: 21px;
    margin: 0 0 12px;
}

.past-event-card p {
    margin: 0 0 18px;
}

.past-event-location {
    color: var(--muted);
    font-size: 12px;
    margin: auto 0 18px;
}

.past-event-location i {
    color: var(--gold-dark);
    margin-right: 8px;
}

.event-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.92), rgba(35, 42, 143, 0.84)),
        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=1920&auto=format&fit=crop') center/cover;
    color: #fff;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.event-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(201, 169, 97, 0.04) 80px, rgba(201, 169, 97, 0.04) 81px);
    pointer-events: none;
}

.event-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 28px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--gold);
}

.event-type-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.event-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 28px;
    color: #fff;
    max-width: 880px;
}

.event-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.event-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.event-hero-meta-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.event-hero-meta-text .label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
}

.event-hero-meta-text .value {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.event-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    max-width: 1180px;
    margin: 0 auto;
}

.event-content {
    background: #fff;
    padding: 56px 60px;
    border: 1px solid var(--line);
}

.event-featured-image {
    aspect-ratio: 16 / 9;
    margin: -56px -60px 48px;
    overflow: hidden;
    background: var(--paper);
}

.event-content section {
    margin-bottom: 48px;
}

.event-content section:last-child {
    margin-bottom: 0;
}

.event-section-head {
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--paper);
}

.event-section-eyebrow {
    color: var(--gold-dark);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
}

.event-section-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.event-about p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 20px;
}

.event-about p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 1.55;
    color: var(--navy-deep);
    font-weight: 500;
    font-style: italic;
    padding: 24px 28px;
    background: var(--paper);
    border-left: 3px solid var(--gold);
    margin-bottom: 32px;
}

.event-past-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--paper);
    border-left: 3px solid var(--gold);
    color: var(--navy-deep);
    padding: 16px 20px;
    margin-bottom: 32px;
    font-weight: 700;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.speaker-card {
    background: var(--paper);
    padding: 22px 24px;
    display: flex;
    gap: 18px;
    align-items: center;
    border-left: 3px solid var(--gold);
}

.speaker-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.speaker-info .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
}

.event-share {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--paper);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.share-label {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 42px;
    height: 42px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    background: var(--navy-deep);
    color: var(--gold);
    border-color: var(--navy-deep);
}

.event-sidebar {
    position: sticky;
    top: 130px;
    align-self: start;
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    margin-bottom: 20px;
}

.sidebar-card.highlight {
    border-top: 4px solid var(--gold);
    background: var(--paper);
}

.sidebar-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--navy-deep);
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
}

.sidebar-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-info-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 14px;
}

.sidebar-info-item:last-child {
    border-bottom: 0;
}

.sidebar-info-icon {
    width: 36px;
    height: 36px;
    background: var(--cream);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.sidebar-info-content .label {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 4px;
}

.sidebar-info-content .value {
    color: var(--navy-deep);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.sidebar-info-content small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}

.event-register-btn {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    background: var(--navy-deep);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.event-register-btn:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.contact-card {
    background: var(--navy-deep);
    color: #fff;
    padding: 28px;
    text-align: center;
    border-top: 4px solid var(--gold);
}

.contact-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 10px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-size: 14px;
}

.contact-line a {
    color: var(--gold-light);
    text-decoration: none;
}

.contact-line a:hover {
    color: #fff;
}

@media (max-width: 1100px) {
    .event-filter-bar,
    .event-layout {
        grid-template-columns: 1fr;
    }

    .event-sidebar {
        position: static;
    }

    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .events-list .event-card {
        grid-template-columns: 1fr;
    }

    .event-image {
        aspect-ratio: 16 / 9;
    }

    .event-content {
        padding: 36px 28px;
    }

    .event-featured-image {
        margin: -36px -28px 34px;
    }

    .speakers-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .events-archive-section,
    .event-detail-section {
        padding: 64px 0 76px;
    }

    .event-filter-tabs a {
        width: 100%;
        justify-content: center;
    }

    .event-body,
    .past-event-body,
    .sidebar-card,
    .contact-card {
        padding: 24px;
    }

    .event-hero {
        padding: 48px 0 64px;
    }

    .event-hero h1 {
        font-size: 34px;
    }

    .event-hero-meta {
        gap: 18px;
    }

    .event-share {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Sancaktepe sprinti */
.sancaktepe-page .page-hero {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(35, 42, 143, 0.78)),
        url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?q=80&w=1920&auto=format&fit=crop');
}

.industry-profile-page .page-hero {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(35, 42, 143, 0.78)),
        url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?q=80&w=1920&auto=format&fit=crop');
}

.economic-data-page .page-hero {
    background-image:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(35, 42, 143, 0.78)),
        url('https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?q=80&w=1920&auto=format&fit=crop');
}

.sancaktepe-page .block,
.industry-profile-page .block,
.economic-data-page .block {
    padding: 100px 0;
}

.intro-grid,
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.overview-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
}

.intro-side .section-eyebrow,
.overview-content .section-eyebrow {
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
}

.intro-side h2,
.overview-content h2,
.data-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.intro-side h2 em,
.overview-content h2 em,
.data-intro h2 em,
.section-head h2 em {
    color: var(--gold-dark);
    font-style: italic;
}

.intro-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(180deg, rgba(26, 35, 126, 0.1), rgba(26, 35, 126, 0.5)),
        url('https://images.unsplash.com/photo-1605116959581-3dd1d31773d6?q=80&w=900&auto=format&fit=crop') center/cover;
    overflow: hidden;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    z-index: -1;
}

.intro-image-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 32px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(26, 35, 126, 0.9));
}

.intro-image-overlay .label {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
}

.intro-image-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.3;
    margin: 0;
}

.intro-content p,
.overview-content p,
.data-intro p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 20px;
}

.intro-content p:first-of-type {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.5;
    color: var(--navy-deep);
    font-weight: 500;
    font-style: italic;
    padding-left: 24px;
    border-left: 3px solid var(--gold);
    margin-bottom: 32px;
}

.features-section,
.sectors-section {
    background: var(--paper);
}

.section-eyebrow-center {
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}

.section-eyebrow-center::before,
.section-eyebrow-center::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-eyebrow-center::before {
    left: 0;
}

.section-eyebrow-center::after {
    right: 0;
}

.features-grid,
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.sectors-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.feature-card,
.sector-card,
.data-card {
    background: #fff;
    border: 1px solid var(--line);
    position: relative;
    transition: all 0.35s;
}

.feature-card,
.sector-card {
    padding: 42px 30px;
    text-align: center;
}

.feature-card::before,
.sector-card::before,
.data-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.feature-card:hover,
.sector-card:hover,
.data-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
    border-color: var(--gold);
}

.feature-card:hover::before,
.sector-card:hover::before,
.data-card:hover::before {
    transform: scaleX(1);
}

.feature-icon,
.sector-icon,
.category-icon {
    width: 72px;
    height: 72px;
    background: var(--paper);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 28px;
    margin-bottom: 22px;
    transition: all 0.35s;
}

.category-icon {
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 20px;
}

.feature-card:hover .feature-icon,
.sector-card:hover .sector-icon {
    background: var(--gold);
    color: var(--navy-deep);
    transform: rotate(8deg);
}

.feature-card h3,
.sector-card h3,
.center-content h4,
.category-text h3,
.source-note h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.2;
}

.feature-card h3,
.sector-card h3 {
    font-size: 22px;
    margin: 0 0 12px;
}

.feature-card p,
.sector-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.stats-section,
.indicators-section,
.highlight-row {
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.95), rgba(35, 42, 143, 0.92)),
        url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?q=80&w=1920&auto=format&fit=crop') center/cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section::before,
.indicators-section::before,
.highlight-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(201, 169, 97, 0.04) 80px, rgba(201, 169, 97, 0.04) 81px);
    pointer-events: none;
}

.stats-section .container,
.indicators-section .container,
.highlight-inner {
    position: relative;
    z-index: 2;
}

.stats-section .section-head h2,
.indicators-section .section-head h2 {
    color: #fff;
}

.stats-section .section-head p,
.indicators-section .section-head p {
    color: rgba(255,255,255,0.78);
}

.stats-grid,
.indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.stat-card,
.indicator-card,
.highlight-stat {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(201, 169, 97, 0.25);
    background: rgba(255,255,255,0.05);
    transition: all 0.35s;
}

.stat-card:hover,
.indicator-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    transform: translateY(-6px);
}

.stat-number,
.indicator-value,
.highlight-stat .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label,
.indicator-label,
.highlight-stat .label {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.overview-image {
    aspect-ratio: 4 / 5;
    background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?q=80&w=900&auto=format&fit=crop') center/cover;
    position: relative;
}

.overview-image::before,
.overview-image::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
}

.overview-image::before {
    top: -20px;
    right: -20px;
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
}

.overview-image::after {
    bottom: -20px;
    left: -20px;
    border-bottom: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
}

.centers-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.center-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 28px;
    align-items: center;
    transition: all 0.35s;
}

.center-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.08);
    border-color: var(--gold);
}

.center-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.center-content h4 {
    font-size: 22px;
    margin: 0 0 8px;
}

.center-content p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

.center-tag {
    background: var(--paper);
    color: var(--gold-dark);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.data-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 64px;
}

.data-intro .eyebrow,
.category-text .eyebrow,
.highlight-content .eyebrow {
    color: var(--gold-dark);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
}

.data-category {
    margin-bottom: 64px;
}

.category-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--paper);
}

.category-text h3 {
    font-size: 28px;
    margin: 0;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.data-card {
    padding: 28px 24px;
}

.data-label {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 12px;
}

.data-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy-deep);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.data-value em {
    font-style: normal;
    font-size: 18px;
    color: var(--gold-dark);
}

.data-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
}

.data-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 10px;
    background: var(--paper);
    font-size: 11px;
    font-weight: 800;
}

.data-trend.up {
    color: #2d7d4f;
}

.highlight-row {
    padding: 64px 0;
    margin: 0 -32px 64px;
}

.highlight-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.highlight-content .eyebrow {
    color: var(--gold);
}

.highlight-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 16px;
}

.highlight-content p {
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.source-note {
    margin-top: 64px;
    padding: 28px 32px;
    background: var(--paper);
    border-left: 3px solid var(--gold);
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.source-icon {
    color: var(--gold-dark);
    font-size: 24px;
}

.source-note h4 {
    font-size: 22px;
    margin: 0 0 8px;
}

.source-note p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1100px) {
    .intro-grid,
    .overview-grid,
    .highlight-inner {
        grid-template-columns: 1fr;
    }

    .sectors-grid,
    .data-grid,
    .stats-grid,
    .indicators-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .sancaktepe-page .block,
    .industry-profile-page .block,
    .economic-data-page .block {
        padding: 72px 0;
    }

    .intro-grid,
    .overview-grid {
        gap: 44px;
    }

    .features-grid,
    .sectors-grid,
    .data-grid,
    .stats-grid,
    .indicators-grid,
    .highlight-stats {
        grid-template-columns: 1fr;
    }

    .center-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .center-icon {
        margin: 0 auto;
    }

    .intro-side h2,
    .overview-content h2,
    .data-intro h2 {
        font-size: 36px;
    }

    .highlight-row {
        margin-left: -16px;
        margin-right: -16px;
    }

    .source-note {
        flex-direction: column;
    }
}

/* ==========================================================================
   Sprint F - İletişim ve Yasal Sayfalar
   ========================================================================== */

.contact-page .page-hero,
.contact-page-hero {
    min-height: 400px;
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.84) 0%, rgba(35, 42, 143, 0.76) 100%),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.contact-page .page-hero-inner {
    padding: 80px 32px;
}

.contact-page .page-hero-title {
    margin-bottom: 24px;
    font-size: 64px;
    line-height: 1.05;
}

.legal-page .page-hero,
.legal-page-hero {
    min-height: 320px;
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.contact-page .page-hero-desc {
    max-width: 640px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}

.contact-page .block {
    padding: 100px 0;
}

.contact-page .container {
    max-width: 1320px;
    padding-left: 32px;
    padding-right: 32px;
}

.contact-info-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 76px;
}

.contact-info-card {
    position: relative;
    overflow: hidden;
    padding: 40px 28px;
    background: #fff;
    border: 1px solid var(--line);
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.contact-info-card:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.1);
    transform: translateY(-6px);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--paper);
    color: var(--gold-dark);
    font-size: 26px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gold);
    color: var(--navy-deep);
    transform: rotate(8deg);
}

.contact-info-card .label {
    margin-bottom: 10px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.contact-info-card h3 {
    margin: 0 0 12px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.contact-info-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.contact-info-card a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--navy-deep);
}

.contact-intro {
    max-width: 960px;
    margin: 0 auto 56px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
}

.contact-form-wrapper,
.map-wrapper {
    min-height: 600px;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    padding: 48px;
    background: #fff;
    border: 1px solid var(--line);
}

.form-head {
    margin-bottom: 32px;
}

.form-head .eyebrow {
    margin-bottom: 10px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.form-head h2 {
    margin: 0 0 12px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.form-head h2 em {
    color: var(--gold-dark);
    font-style: italic;
}

.form-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
}

.form-embed {
    flex: 1;
}

.contact-page .wpcf7-form p {
    margin-bottom: 16px;
}

.contact-page .wpcf7-form label {
    display: block;
    color: var(--navy-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-page .wpcf7 input:not([type="submit"]):not([type="checkbox"]),
.contact-page .wpcf7 textarea,
.contact-page .wpcf7 select {
    width: 100%;
    margin-top: 8px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-page .wpcf7 input:focus,
.contact-page .wpcf7 textarea:focus,
.contact-page .wpcf7 select:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.contact-page .wpcf7 textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-page .wpcf7-submit,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border: 0;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.contact-page .wpcf7-submit:hover,
.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.form-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 32px;
    border: 1px dashed rgba(201, 169, 97, 0.55);
    background: var(--paper);
}

.form-placeholder i {
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-size: 30px;
}

.form-placeholder h3 {
    margin: 0 0 12px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
}

.form-placeholder p {
    color: var(--muted);
    line-height: 1.7;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.25) contrast(1.04);
}

.map-placeholder {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: var(--muted);
}

.map-placeholder i {
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-size: 42px;
}

.map-placeholder h3 {
    margin: 0 0 10px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
}

.social-section {
    background: var(--paper);
}

.social-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.social-head .eyebrow {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    padding: 0 40px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.social-head .eyebrow::before,
.social-head .eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.social-head .eyebrow::before {
    left: 0;
}

.social-head .eyebrow::after {
    right: 0;
}

.social-head h2 {
    margin: 0 0 14px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    line-height: 1.1;
}

.social-head h2 em {
    color: var(--gold-dark);
}

.social-head p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy-deep);
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-item:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--gold);
    transform: translateY(-4px);
}

.social-item i {
    margin-bottom: 12px;
    font-size: 26px;
}

.social-item .name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.legal-document-section {
    padding: 80px 0 100px;
}

.legal-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
}

.legal-page .legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    padding: 18px 24px;
    border-left: 3px solid var(--gold);
    background: var(--paper);
    color: var(--muted);
    font-size: 13px;
}

.legal-page .legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-page .legal-meta i {
    color: var(--gold-dark);
}

.legal-page .legal-meta strong {
    color: var(--navy-deep);
    font-weight: 700;
}

.legal-page .legal-content {
    padding: 56px 64px;
    background: #fff;
    border: 1px solid var(--line);
}

.legal-page .legal-content p,
.legal-page .legal-content li {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.85;
}

.legal-page .legal-content p {
    margin-bottom: 18px;
}

.legal-page .legal-content h2 {
    margin: 40px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--paper);
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.legal-page .legal-content h2:first-child {
    margin-top: 0;
}

.legal-page .legal-content h3 {
    margin: 28px 0 14px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
}

.legal-page .legal-content ul,
.legal-page .legal-content ol {
    margin: 0 0 20px 24px;
}

.legal-page .legal-content li {
    margin-bottom: 8px;
}

.legal-page .legal-content strong {
    color: var(--navy-deep);
    font-weight: 700;
}

.legal-page .legal-content a {
    color: var(--gold-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
}

.legal-page .legal-content a:hover {
    color: var(--navy-deep);
    border-bottom-color: var(--navy-deep);
}

.legal-page .legal-content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    font-size: 14px;
}

.legal-page .legal-content th {
    padding: 14px 16px;
    background: var(--navy-deep);
    color: var(--gold);
    text-align: left;
    letter-spacing: 0.5px;
}

.legal-page .legal-content td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.legal-page .legal-content tr:nth-child(even) td {
    background: var(--paper);
}

@media (max-width: 1100px) {
    .contact-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .contact-page .page-hero {
        min-height: 320px;
    }

    .contact-page .page-hero-inner {
        padding: 60px 32px;
    }

    .contact-page .page-hero-title {
        font-size: 36px;
    }

    .contact-info-section,
    .legal-document-section {
        padding: 80px 0;
    }

    .contact-cards,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        min-height: auto;
        padding: 34px 24px;
    }

    .map-wrapper,
    .map-placeholder {
        min-height: 420px;
    }

    .form-head h2,
    .social-head h2 {
        font-size: 34px;
    }

    .legal-container {
        padding: 0 20px;
    }

    .legal-page .legal-content {
        padding: 34px 24px;
    }

    .legal-page .legal-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   Sprint G - 404, Arama ve Site Haritası
   ========================================================================== */

.error-section {
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 32px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(26, 35, 126, 0.04) 0%, transparent 50%),
        var(--cream);
}

.error-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(201, 169, 97, 0.025) 100px, rgba(201, 169, 97, 0.025) 101px);
    pointer-events: none;
}

.error-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.error-number {
    margin-bottom: 16px;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 200px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--gold-dark) 50%, var(--navy-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-number::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 120px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--gold);
}

.error-eyebrow {
    margin: 32px 0 18px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.error-content h1 {
    margin: 0 0 18px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.error-content h1 em {
    color: var(--gold-dark);
    font-style: italic;
}

.error-content p {
    margin: 0 0 36px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.error-actions .btn-primary,
.error-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.error-actions .btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    border: 1px solid var(--gold);
}

.error-actions .btn-secondary {
    background: transparent;
    color: var(--navy-deep);
    border: 1px solid var(--navy-deep);
}

.error-actions a:hover {
    transform: translateY(-2px);
}

.quick-links {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.quick-links-title {
    margin-bottom: 20px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
}

.quick-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.quick-link {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy-deep);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.quick-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
}

.search-hero {
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.92) 0%, rgba(35, 42, 143, 0.85) 100%);
    color: #fff;
}

.search-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(201, 169, 97, 0.04) 80px, rgba(201, 169, 97, 0.04) 81px);
    pointer-events: none;
}

.search-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.search-hero-eyebrow {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.search-hero h1 {
    margin: 0 0 36px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.search-box {
    max-width: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.search-box input {
    min-width: 0;
    padding: 18px 24px;
    border: 0;
    outline: 0;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.search-box button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    border: 0;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.search-box button:hover {
    background: var(--gold-light);
}

.search-results-section {
    padding: 64px 0 100px;
}

.search-page .container {
    max-width: 1100px;
}

.search-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--paper);
}

.search-meta-info {
    color: var(--muted);
    font-size: 14px;
}

.search-meta-info .query {
    color: var(--gold-dark);
    font-style: italic;
    font-weight: 700;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: block;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s ease;
}

.result-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.08);
    transform: translateX(6px);
}

.result-item:hover::before {
    transform: scaleY(1);
}

.result-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.result-category {
    padding: 4px 12px;
    background: var(--paper);
    color: var(--gold-dark);
}

.result-date i {
    margin-right: 6px;
    color: var(--gold-dark);
    font-size: 10px;
}

.result-item h3 {
    margin: 0 0 8px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.result-item p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.result-url {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 12px;
    letter-spacing: 0.5px;
}

.result-url i {
    font-size: 9px;
}

.search-empty {
    padding: 72px 32px;
    background: #fff;
    border: 1px solid var(--line);
    text-align: center;
}

.search-empty i {
    margin-bottom: 20px;
    color: var(--gold-dark);
    font-size: 44px;
}

.search-empty h2 {
    margin: 0 0 12px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
}

.search-empty p {
    margin: 0;
    color: var(--muted);
}

.sitemap-page-hero {
    min-height: 320px;
    background:
        linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(35, 42, 143, 0.78) 100%),
        url('https://images.unsplash.com/photo-1532619675605-1ede6c2ed2b0?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.sitemap-section-block {
    padding: 80px 0 100px;
}

.sitemap-page .container {
    max-width: 1200px;
}

.sitemap-intro {
    margin-bottom: 56px;
    text-align: center;
}

.sitemap-intro p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.sitemap-section {
    position: relative;
    overflow: hidden;
    padding: 36px 32px;
    background: #fff;
    border: 1px solid var(--line);
    transition: box-shadow 0.25s ease;
}

.sitemap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.sitemap-section:hover {
    box-shadow: 0 12px 30px rgba(26, 35, 126, 0.08);
}

.sitemap-section:hover::before {
    transform: scaleX(1);
}

.sitemap-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--paper);
}

.sitemap-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--paper);
    color: var(--gold-dark);
}

.sitemap-section h3 {
    margin: 0;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.sitemap-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sitemap-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.sitemap-list li:last-child {
    border-bottom: 0;
}

.sitemap-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-deep);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.sitemap-list a:hover {
    padding-left: 8px;
    color: var(--gold-dark);
}

.sitemap-list a i {
    color: var(--gold);
    font-size: 9px;
}

.legal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--paper);
}

.legal-row h3 {
    margin: 0 0 6px;
    color: var(--navy-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
}

.legal-row p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.legal-row-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.legal-row-links a {
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy-deep);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.legal-row-links a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

@media (max-width: 1024px) {
    .error-number {
        font-size: 160px;
    }

    .sitemap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .error-section {
        min-height: 560px;
        padding: 70px 24px;
    }

    .error-number {
        font-size: 120px;
    }

    .error-content h1 {
        font-size: 30px;
    }

    .search-hero h1 {
        font-size: 30px;
    }

    .search-box {
        grid-template-columns: 1fr;
    }

    .search-box button {
        justify-content: center;
        padding: 16px;
    }

    .result-item {
        padding: 22px 20px;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .legal-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Final polish: event archive */
.events-list .event-image {
    min-height: 260px;
    height: 100%;
    aspect-ratio: auto;
}

.events-list .event-date-badge {
    z-index: 3;
}

.events-list .event-type-tag {
    top: 24px;
    right: 24px;
    left: auto;
    z-index: 4;
    width: auto;
    max-width: calc(100% - 150px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .events-list .event-card {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 720px) {
    .events-list .event-card {
        grid-template-columns: 1fr;
    }

    .events-list .event-image {
        min-height: 220px;
    }

    .events-list .event-type-tag {
        top: 20px;
        right: 20px;
        max-width: calc(100% - 130px);
    }
}

/* Membership steps: keep the static design rhythm */
.membership-steps-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    position: relative;
    align-items: start;
}

.membership-steps-section .steps-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    display: block;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
    z-index: 0;
}

.membership-steps-section .membership-step-item {
    position: relative;
    z-index: 1;
    min-height: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.membership-steps-section .membership-step-num {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--navy-deep);
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s;
}

.membership-steps-section .membership-step-item:hover .membership-step-num {
    background: var(--gold);
    color: var(--navy-deep);
    transform: scale(1.05);
}

.membership-steps-section .membership-step-item h4 {
    min-height: 0;
    margin: 0 0 10px;
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.25;
    color: var(--navy-deep);
    font-weight: 600;
}

.membership-steps-section .membership-step-item p {
    max-width: 230px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .membership-steps-section .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }

    .membership-steps-section .steps-grid::before {
        display: none;
    }
}

@media (max-width: 720px) {
    .membership-steps-section .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Final spacing system: keep section rhythm consistent site-wide */
section.block {
    padding: 100px 0;
}

section.block + section.block {
    margin-top: 0;
}

section.block .section-head {
    margin-bottom: 64px;
}

.membership-steps-section {
    padding: 100px 0 96px !important;
}

.membership-documents-section {
    padding: 100px 0 !important;
}

.membership-steps-section + .membership-documents-section {
    margin-top: 0;
}

@media (max-width: 1024px) {
    section.block {
        padding: 76px 0;
    }

    section.block .section-head {
        margin-bottom: 46px;
    }

    .membership-steps-section,
    .membership-documents-section {
        padding: 76px 0 !important;
    }
}

@media (max-width: 720px) {
    section.block {
        padding: 64px 0;
    }

    section.block .section-head {
        margin-bottom: 38px;
    }

    .membership-steps-section,
    .membership-documents-section {
        padding: 64px 0 !important;
    }
}
