:root {
    --eosb-navy: #0c1e3a;
    --eosb-navy-dark: #081528;
    --eosb-yellow: #f5c518;
    --eosb-yellow-hover: #e0b010;
    --eosb-text: #333;
    --eosb-muted: #6b7280;
    --eosb-white: #ffffff;
    --eosb-shadow: 0 10px 30px rgba(12, 30, 58, 0.08);
    --header-nav-pad-top: .7rem;
    --header-logo-pad-bottom: .85rem;
    --header-logo-img-height: 74px;
    --header-logo-overlap: calc((var(--header-nav-pad-top) + var(--header-logo-img-height) + var(--header-logo-pad-bottom)) / 2);
    --header-sticky-offset: calc(44px + .75rem + var(--header-nav-pad-top) + var(--header-logo-img-height) + var(--header-logo-pad-bottom) + 1rem);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--eosb-text);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

/* Utility bar */
.utility-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    font-size: .82rem;
    position: relative;
    z-index: 2;
}

.utility-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 44px;
    flex-wrap: wrap;
}

.utility-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.utility-contact-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--eosb-navy);
    font-weight: 600;
    font-size: .8rem;
    transition: color .2s ease;
}

.utility-contact-link:hover {
    color: #2563eb;
}

.utility-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--eosb-navy);
    line-height: 1;
}

.utility-contact-icon svg {
    display: block;
    width: .95rem;
    height: .95rem;
}

.utility-contact-link:hover .utility-contact-icon {
    color: #2563eb;
}

.utility-right {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: .45rem;
}

.social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1877f2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    text-decoration: none;
}

.social-icons--3d {
    gap: .55rem;
}

.social-icons--3d a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: .74rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow:
        0 4px 0 rgba(0, 0, 0, .16),
        0 8px 16px rgba(12, 30, 58, .14);
    transition: transform .16s ease, box-shadow .16s ease;
}

.social-icons--3d a:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 rgba(0, 0, 0, .14),
        0 12px 20px rgba(12, 30, 58, .16);
}

.social-icons--3d a:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 rgba(0, 0, 0, .2),
        0 3px 8px rgba(12, 30, 58, .12);
}

.social-icons--3d a[aria-label="Facebook"] {
    background: linear-gradient(145deg, #4f8df7, #1d4ed8);
}

.social-icons--3d a[aria-label="X (Twitter)"] {
    background: linear-gradient(145deg, #4b5563, #111827);
}

.social-icons--3d a[aria-label="Instagram"] {
    background: linear-gradient(145deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.social-icons--3d a[aria-label="YouTube"] {
    background: linear-gradient(145deg, #ff4d4d, #cc0000);
}

/* Canlı sosyal medya ikonları */
.social-icons--live {
    gap: .45rem;
    align-items: center;
}

.social-icons--live .social-icon {
    --social-size: 27px;
    position: relative;
    width: var(--social-size);
    height: var(--social-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    transform: translateY(0) scale(1);
    transition:
        transform .28s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow .28s ease,
        filter .28s ease;
    animation: social-float 4.5s ease-in-out infinite;
    box-shadow:
        0 4px 14px rgba(12, 30, 58, .18),
        inset 0 1px 0 rgba(255, 255, 255, .35);
}

.social-icons--live .social-icon:nth-child(2) { animation-delay: .35s; }
.social-icons--live .social-icon:nth-child(3) { animation-delay: .7s; }
.social-icons--live .social-icon:nth-child(4) { animation-delay: 1.05s; }

.social-icons--live .social-icon__ring {
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    opacity: 0;
    transform: scale(.85);
    transition: opacity .28s ease, transform .28s ease;
    z-index: -1;
}

.social-icons--live .social-icon__glyph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    transition: transform .28s cubic-bezier(.34, 1.56, .64, 1);
}

.social-icons--live .social-icon__glyph svg {
    width: 100%;
    height: 100%;
    display: block;
}

.social-icons--live .social-icon--facebook {
    background: linear-gradient(145deg, #5b9dff 0%, #1877f2 55%, #0d5bd7 100%);
}

.social-icons--live .social-icon--x {
    background: linear-gradient(145deg, #3f3f46 0%, #18181b 100%);
}

.social-icons--live .social-icon--instagram {
    background: linear-gradient(145deg, #feda75 0%, #fa7e1e 22%, #d62976 52%, #962fbf 78%, #4f5bd5 100%);
}

.social-icons--live .social-icon--youtube {
    background: linear-gradient(145deg, #ff6b6b 0%, #ff0000 55%, #cc0000 100%);
}

.social-icons--live .social-icon--facebook .social-icon__ring {
    background: radial-gradient(circle, rgba(24, 119, 242, .45) 0%, transparent 70%);
}

.social-icons--live .social-icon--x .social-icon__ring {
    background: radial-gradient(circle, rgba(24, 24, 27, .45) 0%, transparent 70%);
}

.social-icons--live .social-icon--instagram .social-icon__ring {
    background: radial-gradient(circle, rgba(214, 41, 118, .45) 0%, transparent 70%);
}

.social-icons--live .social-icon--youtube .social-icon__ring {
    background: radial-gradient(circle, rgba(255, 0, 0, .45) 0%, transparent 70%);
}

.social-icons--live .social-icon:hover,
.social-icons--live .social-icon:focus-visible {
    animation: none;
    transform: translateY(-4px) scale(1.12);
    filter: brightness(1.08);
    box-shadow:
        0 10px 24px rgba(12, 30, 58, .22),
        inset 0 1px 0 rgba(255, 255, 255, .45);
}

.social-icons--live .social-icon:hover .social-icon__ring,
.social-icons--live .social-icon:focus-visible .social-icon__ring {
    opacity: 1;
    transform: scale(1.15);
    animation: social-pulse 1.2s ease-out infinite;
}

.social-icons--live .social-icon:hover .social-icon__glyph,
.social-icons--live .social-icon:focus-visible .social-icon__glyph {
    transform: scale(1.08) rotate(-6deg);
}

.social-icons--live .social-icon:active {
    transform: translateY(-1px) scale(1.04);
}

@keyframes social-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes social-pulse {
    0% { transform: scale(1); opacity: .85; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .social-icons--live .social-icon {
        animation: none;
    }

    .social-icons--live .social-icon:hover .social-icon__ring,
    .social-icons--live .social-icon:focus-visible .social-icon__ring {
        animation: none;
    }
}

.utility-buttons {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.btn-utility {
    background: var(--eosb-navy);
    color: #fff !important;
    padding: .38rem .8rem;
    border-radius: .35rem;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .02em;
    box-shadow: 0 3px 0 #081528, 0 5px 12px rgba(12, 30, 58, .15);
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-utility:hover {
    background: #142844;
    transform: translateY(-1px);
}

/* Site header shell */
.site-header {
    position: sticky;
    top: 0;
    z-index: 220;
}

/* Header */
.main-header {
    position: relative;
    z-index: 200;
    padding-bottom: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(.75rem + var(--header-logo-overlap));
    background: var(--eosb-white);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    pointer-events: none;
    z-index: 0;
}

.header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 0;
    padding-top: .75rem;
    overflow: visible;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
}

.brand--floating {
    position: relative;
    z-index: 260;
    margin-bottom: calc(-1 * var(--header-logo-overlap));
    background: #fff;
    padding: var(--header-nav-pad-top) 1.35rem var(--header-logo-pad-bottom);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(12, 30, 58, .16);
    border: 1px solid #e5e7eb;
}

.brand--floating .brand-logo-img {
    height: var(--header-logo-img-height);
    max-width: min(260px, 42vw);
}

.brand-logo-img {
    height: 56px;
    width: auto;
    max-width: min(220px, 45vw);
    object-fit: contain;
}

.main-nav.main-nav--mobile {
    display: none;
}

.main-nav--desktop {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-self: flex-start;
    padding-top: var(--header-nav-pad-top);
    min-width: 0;
}

.main-nav--desktop .nav-list {
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.main-nav--desktop .nav-link {
    padding: 0 .65rem .35rem;
    line-height: 1.25;
}

.brand-footer {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.brand-emblem-footer {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: .95;
}

.brand-footer-text {
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.3;
    max-width: 180px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: .15rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .65rem .7rem;
    font-weight: 700;
    font-size: .84rem;
    color: #111;
    white-space: nowrap;
}

.nav-link:hover { color: #2563eb; }

.caret { font-size: .7rem; opacity: .7; }

.nav-item { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: var(--eosb-shadow);
    border: 1px solid #e5e7eb;
    list-style: none;
    padding: .5rem 0;
    z-index: 300;
}

.dropdown-menu a {
    display: block;
    padding: .55rem 1rem;
    font-size: .88rem;
    font-weight: 600;
}

.dropdown-menu a:hover { background: #f3f4f6; color: #2563eb; }

.has-dropdown:hover .dropdown-menu { display: block; }

.mega-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    z-index: 300;
}

.has-mega:hover .mega-menu { display: block; }

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.mega-column h4 {
    margin: 0 0 1rem;
    font-size: .95rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column li {
    border-bottom: 1px solid #f0f0f0;
}

.mega-column a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 0;
    font-size: .88rem;
    font-weight: 600;
    color: #333;
}

.mega-column a:hover { color: #2563eb; }

.arrow-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: .5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--eosb-navy);
}

.page-alert { padding-top: 1rem; }

.page-content {
    font-size: 1rem;
    line-height: 1.8;
}

.page-content h2, .page-content h3, .page-content h4 { color: var(--eosb-navy); margin-top: 1.5rem; }

.page-content img:not(.news-content-image):not(.news-featured-image) { border-radius: .5rem; margin: 1rem 0; }

/* Haber detay — kapak görseli */
.news-featured-image {
    display: block;
    width: 100%;
    max-width: 900px;
    max-height: min(60vh, 520px);
    margin: 0 auto 1.75rem;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--eosb-shadow);
}

/* Haber içeriği — görseller alt alta, ortalı, büyük */
.news-body {
    max-width: 900px;
    margin-inline: auto;
}

.news-body p:has(> img),
.news-body p:has(> a > img),
.news-body div:has(> img),
.news-body div:has(> a > img) {
    display: block;
    margin: 1.5rem 0;
    text-align: center;
}

.news-body .news-image-link {
    display: inline-block;
    max-width: 100%;
    text-decoration: none;
    border: 0;
}

.news-body img.news-content-image,
.news-body .news-image-link img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: min(75vh, 820px);
    height: auto;
    margin: 1.75rem auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(8, 21, 40, 0.12);
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-body img.news-content-image:hover,
.news-body .news-image-link:hover img {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(8, 21, 40, 0.16);
}

/* Lightbox */
body.news-lightbox-open {
    overflow: hidden;
}

.news-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.news-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.news-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 21, 40, 0.88);
    cursor: zoom-out;
}

.news-lightbox-stage {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: min(96vw, 1200px);
    max-height: 90vh;
}

.news-lightbox-stage img {
    display: block;
    max-width: min(96vw, 1200px);
    max-height: 90vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.news-lightbox-close,
.news-lightbox-prev,
.news-lightbox-next {
    position: absolute;
    z-index: 2;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease;
}

.news-lightbox-close:hover,
.news-lightbox-prev:hover,
.news-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.22);
}

.news-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.75rem;
}

.news-lightbox-prev,
.news-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
}

.news-lightbox-prev {
    left: 1rem;
}

.news-lightbox-next {
    right: 1rem;
}

@media (max-width: 768px) {
    .news-lightbox-prev,
    .news-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .news-body img.news-content-image,
    .news-body .news-image-link img {
        max-height: min(65vh, 560px);
    }
}

.page-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }

.page-content table td, .page-content table th {
    border: 1px solid #e5e7eb;
    padding: .65rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: var(--eosb-shadow);
    aspect-ratio: 1;
    cursor: zoom-in;
}

.gallery-item--lightbox:focus-within {
    outline: 2px solid var(--eosb-navy);
    outline-offset: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
    cursor: zoom-in;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .75rem;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    color: #fff;
    font-size: .85rem;
}

.text-muted { color: var(--eosb-muted); }

.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.footer-legal-sep {
    color: rgba(255, 255, 255, .35);
    user-select: none;
}

.footer-credit a {
    font-weight: 600;
}

/* Hero */
.hero {
    position: relative;
    min-height: 728px;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: calc(-1 * var(--header-logo-overlap));
    padding-top: calc(3.5rem + var(--header-logo-overlap));
    overflow: hidden;
    background: linear-gradient(135deg, rgba(8, 21, 40, .45), rgba(12, 30, 58, .35)), url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 21, 40, .45), rgba(12, 30, 58, .35));
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 2rem));
    margin-inline: auto;
}

.hero h1,
.hero p,
.hero-actions {
    max-width: 760px;
}

.hero--image-only .hero-copy {
    visibility: hidden;
    pointer-events: none;
}

.hero-copy h1[hidden],
.hero-copy p[hidden],
.hero-actions[hidden] {
    display: none;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.05rem;
    opacity: .95;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    z-index: 10;
    display: flex;
    gap: .5rem;
    margin: 0;
    pointer-events: auto;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
    position: relative;
    flex-shrink: 0;
}

.hero-dot::before {
    content: '';
    position: absolute;
    inset: -10px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, .75);
}

.hero-dot:focus-visible {
    outline: 2px solid var(--eosb-yellow);
    outline-offset: 3px;
}

.hero-dot.is-active {
    background: var(--eosb-yellow);
    transform: scale(1.15);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.5rem;
    border-radius: .35rem;
    font-weight: 700;
    font-size: .9rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
}

.btn-yellow {
    background: var(--eosb-yellow);
    color: var(--eosb-navy);
}
.btn-yellow:hover { background: var(--eosb-yellow-hover); }

.btn-outline {
    border-color: #fff;
    color: #fff;
    background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* Value cards */
.value-cards {
    margin-top: -70px;
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: .75rem;
    box-shadow: var(--eosb-shadow);
    text-align: center;
}

.value-card .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--eosb-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.value-card h3 {
    margin: 0 0 .75rem;
    color: var(--eosb-navy);
    font-size: 1.15rem;
}

.value-card p {
    margin: 0;
    color: var(--eosb-muted);
    font-size: .95rem;
}

.home-intro {
    padding: 0;
    background: #f7f9fc;
}

.home-intro + .section {
    padding-top: 3rem;
}

.home-intro-box {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 2.25rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(12, 30, 58, .08);
    border: 1px solid #e5e7eb;
    border-top: 4px solid var(--eosb-yellow);
    text-align: center;
}

.home-intro-box p {
    margin: 0 auto;
    max-width: 820px;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 575px) {
    .home-intro-box {
        padding: 1.5rem 1.25rem;
    }

    .home-intro-box p {
        font-size: .98rem;
        line-height: 1.7;
    }
}

/* Section headers */
.section {
    padding: 4.5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.section-kicker {
    color: var(--eosb-yellow-hover);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}

.section-title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--eosb-navy);
    font-weight: 800;
}

.link-more {
    color: var(--eosb-navy);
    font-weight: 700;
    border-bottom: 2px solid var(--eosb-yellow);
    padding-bottom: .15rem;
}

/* News grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.news-card {
    background: #fff;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: var(--eosb-shadow);
    transition: transform .2s;
}
.news-card:hover { transform: translateY(-4px); }

.news-card-image {
    position: relative;
    aspect-ratio: 16/10;
    background: #dbeafe;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: #1e40af;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .55rem;
    border-radius: .25rem;
}

.news-card-body { padding: 1rem; }

.news-date {
    color: var(--eosb-muted);
    font-size: .85rem;
    margin-bottom: .35rem;
}

.news-card h3 {
    margin: 0;
    font-size: .95rem;
    line-height: 1.4;
    color: var(--eosb-navy);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-news {
    padding-bottom: 0;
}

/* Anasayfa haber carousel */
.news-carousel {
    position: relative;
    padding: 0 2.75rem;
}

.news-carousel-viewport {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.news-carousel-viewport.is-dragging {
    cursor: grabbing;
}

.news-carousel-viewport.is-dragging .news-card {
    pointer-events: none;
}

.news-carousel-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

.news-carousel-column {
    flex: 0 0 calc(25% - 0.9375rem);
    min-width: 0;
    display: grid;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    align-items: start;
}

.news-carousel-item {
    min-width: 0;
}

.news-carousel-item .news-card {
    display: flex;
    flex-direction: column;
}

.news-carousel .news-card-image {
    flex-shrink: 0;
}

.news-carousel .news-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-carousel .news-card h3 {
    min-height: calc(0.95rem * 1.4 * 3);
}

.news-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 2px solid var(--eosb-yellow-hover);
    border-radius: 50%;
    background: #fff;
    color: var(--eosb-navy);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--eosb-shadow);
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.news-carousel-btn:hover:not(:disabled) {
    background: #fffbeb;
    border-color: var(--eosb-yellow-hover);
}

.news-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.news-carousel-prev { left: 0; }
.news-carousel-next { right: 0; }

.news-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0;
    padding: 2.5rem 0;
}

.news-carousel-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.news-carousel-dot.is-active {
    background: var(--eosb-navy);
    transform: scale(1.1);
}

/* Haber arşivi */
.news-archive-intro {
    max-width: 820px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.news-archive-grid {
    margin-top: .5rem;
}

.news-archive-card {
    background: #fff;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: var(--eosb-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.news-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(8, 21, 40, 0.12);
}

.news-archive-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    background: #dbeafe;
    overflow: hidden;
}

.news-archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.news-archive-card:hover .news-archive-card-image img {
    transform: scale(1.04);
}

.news-archive-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.news-archive-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .85rem;
    padding: 1rem 1rem 1.15rem;
}

.news-archive-title {
    margin: 0;
    font-size: .95rem;
    line-height: 1.45;
    font-weight: 700;
}

.news-archive-title a {
    color: var(--eosb-navy);
    text-decoration: none;
}

.news-archive-title a:hover {
    color: var(--eosb-yellow-hover);
}

.news-archive-read-more {
    margin-top: auto;
    align-self: flex-start;
    color: var(--eosb-navy);
    font-weight: 700;
    font-size: .875rem;
    text-decoration: none;
    border-bottom: 2px solid var(--eosb-yellow);
    padding-bottom: .1rem;
}

.news-archive-read-more:hover {
    color: var(--eosb-yellow-hover);
}

.news-archive-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.pagination-nav {
    width: 100%;
}

.pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 .85rem;
    border-radius: .5rem;
    border: 1px solid #dbeafe;
    background: #fff;
    color: var(--eosb-navy);
    font-weight: 600;
    font-size: .875rem;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.pagination-link:hover {
    border-color: var(--eosb-yellow);
    background: #fffbeb;
}

.pagination-link.is-active {
    background: var(--eosb-navy);
    border-color: var(--eosb-navy);
    color: #fff;
}

.pagination-link.is-disabled,
.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 .85rem;
    color: var(--eosb-muted);
    font-weight: 600;
    font-size: .875rem;
}

.pagination-link.is-disabled {
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

/* Services */
.services-section { background: #f8fafc; text-align: center; }
.services-section .intro { max-width: 720px; margin: 0 auto 2.5rem; color: var(--eosb-muted); }

.home-promo-section {
    padding: 3.5rem 0 4rem;
    background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
}

.home-promo-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.home-promo-text .section-kicker,
.home-promo-video-wrap .section-kicker {
    text-align: left;
    margin-bottom: 1rem;
}

.home-promo-text p {
    margin: 0;
    color: #374151;
    font-size: 1.02rem;
    line-height: 1.8;
}

.home-promo-video-wrap {
    width: 100%;
}

.home-promo-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(12, 30, 58, .16);
}

.home-promo-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 992px) {
    .home-promo-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 3rem;
    }

    .home-promo-grid--video-first {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    }
}

.promo-page-section {
    padding-top: 2.5rem;
}

.promo-page-title {
    margin: 0 0 .35rem;
    font-size: 1.5rem;
    color: var(--eosb-navy);
}

.promo-page-subtitle {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--eosb-navy);
    letter-spacing: .04em;
}

.promo-page-body p {
    margin: 0;
    color: #374151;
    font-size: 1.02rem;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .home-promo-text .section-kicker,
    .home-promo-video-wrap .section-kicker {
        text-align: center;
    }

    .home-promo-text p {
        text-align: center;
    }
}

/* Video Haberler */
.video-news-section {
    padding: 2.5rem 0 3.5rem;
}

.video-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.video-news-card {
    background: #fff;
    border-radius: .85rem;
    box-shadow: var(--eosb-shadow);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.video-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
}

.video-news-card-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
}

.video-news-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.video-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, opacity .35s ease;
}

.video-news-card:hover .video-news-thumb img {
    transform: scale(1.04);
    opacity: .88;
}

.video-news-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video-news-play svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .35));
    transition: transform .25s ease;
}

.video-news-card:hover .video-news-play svg {
    transform: scale(1.08);
}

.video-news-card-body {
    display: block;
    padding: 1.15rem 1.25rem 1.35rem;
}

.video-news-card-title {
    margin: 0 0 .55rem;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--eosb-navy);
}

.video-news-card-desc {
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.video-news-modal-open {
    overflow: hidden;
}

.video-news-modal[hidden] {
    display: none;
}

.video-news-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.video-news-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .82);
}

.video-news-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    background: #fff;
    border-radius: .85rem;
    padding: 1.25rem 1.25rem 1.5rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .28);
}

.video-news-modal-close {
    position: absolute;
    top: .65rem;
    right: .85rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.video-news-modal-close:hover {
    background: #e2e8f0;
}

.video-news-modal-title {
    margin: 0 2.5rem .85rem 0;
    font-size: 1.1rem;
    line-height: 1.45;
    color: var(--eosb-navy);
}

.video-news-modal-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: .5rem;
    overflow: hidden;
}

.video-news-modal-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .video-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .video-news-grid {
        grid-template-columns: 1fr;
    }

    .video-news-modal {
        padding: .75rem;
    }

    .video-news-modal-dialog {
        padding: 1rem .85rem 1.1rem;
    }
}

.services-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

.services-grid--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* 2 kart = alttaki 3 kartla aynı genişlik; satır ortalanır */
    width: calc((200% - 1.5rem) / 3);
    max-width: 100%;
}

.services-grid--bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-item {
    background: #fff;
    border-radius: .75rem;
    padding: 1.75rem 1rem;
    box-shadow: var(--eosb-shadow);
    transition: transform .2s;
}
.service-item:hover { transform: translateY(-3px); }

.service-icon {
    font-size: 2rem;
    margin-bottom: .75rem;
}

.service-item h4 {
    margin: 0;
    font-size: .95rem;
    color: var(--eosb-navy);
}

/* Quote */
.quote-section {
    background: var(--eosb-navy);
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}

.quote-section blockquote {
    margin: 0 auto 1.5rem;
    max-width: 900px;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    line-height: 1.5;
}

.quote-author {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .05em;
}

.quote-title {
    color: var(--eosb-yellow);
    font-size: .9rem;
    margin-top: .35rem;
}

/* Contact */
.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.contact-list li {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
    align-items: start;
}

.contact-social {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
}

.map-wrap {
    border-radius: .75rem;
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--eosb-shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

/* Staj Başvuru Formu */
.internship-section {
    padding: 2.5rem 0 4.5rem;
    background: linear-gradient(180deg, #f1f5f9 0%, #e8eef5 100%);
}

.internship-layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.internship-aside {
    position: sticky;
    top: var(--header-sticky-offset);
    z-index: 10;
}

.internship-aside-card {
    background: linear-gradient(160deg, var(--eosb-navy) 0%, var(--eosb-navy-dark) 100%);
    color: rgba(255, 255, 255, .92);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 20px 45px rgba(12, 30, 58, .22);
}

.internship-aside-card .section-kicker {
    color: var(--eosb-yellow);
    margin-bottom: .65rem;
}

.internship-aside-title {
    margin: 0 0 1rem;
    font-size: 1.55rem;
    line-height: 1.25;
    color: #fff;
    font-weight: 800;
}

.internship-aside-text {
    margin: 0 0 1.5rem;
    font-size: .92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
}

.internship-steps {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.internship-steps li {
    display: flex;
    align-items: center;
    gap: .85rem;
    font-size: .88rem;
    color: rgba(255, 255, 255, .88);
}

.internship-steps li span {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 197, 24, .15);
    color: var(--eosb-yellow);
    font-size: .72rem;
    font-weight: 800;
    border: 1px solid rgba(245, 197, 24, .35);
}

.internship-aside-note {
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
}

.internship-aside-note strong {
    color: var(--eosb-yellow);
}

.internship-main {
    min-width: 0;
}

.internship-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.internship-form-panel {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    padding: 1.65rem 1.85rem 1.85rem;
}

.internship-form-panel--captcha {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.internship-form-section-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid #eef2f7;
}

.internship-form-step {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 30, 58, .08);
    color: var(--eosb-navy);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.internship-form-section-head h3 {
    margin: 0 0 .25rem;
    font-size: 1.08rem;
    color: var(--eosb-navy);
    font-weight: 800;
}

.internship-form-section-head p {
    margin: 0;
    font-size: .86rem;
    color: #64748b;
    line-height: 1.55;
}

.internship-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.25rem;
}

.internship-form .form-field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.internship-form .form-field--full {
    grid-column: 1 / -1;
}

.internship-form label,
.internship-form legend {
    font-size: .86rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: .01em;
}

.internship-form .required {
    color: #dc2626;
}

.internship-form input[type="text"],
.internship-form input[type="email"],
.internship-form input[type="tel"],
.internship-form input[type="number"],
.internship-form select,
.internship-form textarea {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: .65rem;
    padding: .78rem .95rem;
    font: inherit;
    font-size: .94rem;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.internship-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.4.6 6 5.2 10.6.6 12 2l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .95rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

.internship-form input::placeholder,
.internship-form textarea::placeholder {
    color: #94a3b8;
}

.internship-form input:hover,
.internship-form select:hover,
.internship-form textarea:hover {
    border-color: #b8c5d6;
    background: #fff;
}

.internship-form input:focus,
.internship-form select:focus,
.internship-form textarea:focus {
    outline: none;
    border-color: var(--eosb-navy);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(12, 30, 58, .08);
}

.internship-form textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.6;
}

.internship-form .form-fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.internship-period-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
    margin-top: .35rem;
}

.internship-period-card {
    cursor: pointer;
    display: block;
}

.internship-period-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.internship-period-card-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
    min-height: 100%;
    padding: 1rem 1.05rem;
    border: 2px solid #e2e8f0;
    border-radius: .75rem;
    background: #f8fafc;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.internship-period-card:hover .internship-period-card-inner {
    border-color: #cbd5e1;
    background: #fff;
}

.internship-period-check {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: .3rem;
    border: 2px solid #cbd5e1;
    background: #fff;
    position: relative;
    transition: all .2s ease;
}

.internship-period-check::after {
    content: "";
    position: absolute;
    left: .22rem;
    top: .05rem;
    width: .35rem;
    height: .6rem;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) scale(0);
    transition: transform .15s ease;
}

.internship-period-label {
    font-size: .84rem;
    line-height: 1.45;
    color: #334155;
    font-weight: 600;
}

.internship-period-card input:checked + .internship-period-card-inner {
    border-color: var(--eosb-navy);
    background: rgba(12, 30, 58, .04);
    box-shadow: 0 8px 20px rgba(12, 30, 58, .08);
}

.internship-period-card input:checked + .internship-period-card-inner .internship-period-check {
    background: var(--eosb-navy);
    border-color: var(--eosb-navy);
}

.internship-period-card input:checked + .internship-period-card-inner .internship-period-check::after {
    transform: rotate(45deg) scale(1);
}

.internship-period-card input:focus-visible + .internship-period-card-inner {
    box-shadow: 0 0 0 4px rgba(12, 30, 58, .12);
}

.internship-captcha-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 1.25rem;
    border-radius: .85rem;
    background: rgba(12, 30, 58, .04);
    border: 1px dashed #cbd5e1;
    margin-bottom: 1.35rem;
}

.internship-captcha-label {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.internship-captcha-question {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--eosb-navy);
    letter-spacing: .03em;
}

.internship-captcha-hint {
    font-size: .8rem;
    color: #64748b;
}

.internship-captcha-input {
    width: 120px !important;
    text-align: center;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    -moz-appearance: textfield;
    appearance: textfield;
}

.internship-captcha-input::-webkit-outer-spin-button,
.internship-captcha-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.internship-form .form-actions {
    margin-top: 0;
}

.internship-form .internship-submit {
    width: 100%;
    min-height: 3.1rem;
    gap: .55rem;
    font-size: .95rem;
    letter-spacing: .02em;
    border-radius: .65rem;
    box-shadow: 0 10px 24px rgba(245, 197, 24, .28);
}

.internship-form .internship-submit:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(245, 197, 24, .34);
}

.internship-form .internship-submit:disabled {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    border-radius: .85rem;
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
    font-size: .92rem;
    line-height: 1.55;
}

.form-alert svg {
    flex-shrink: 0;
    margin-top: .1rem;
}

.form-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.form-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-alert p {
    margin: 0 0 .35rem;
}

.form-alert ul {
    margin: .35rem 0 0;
    padding-left: 1.1rem;
}

@media (max-width: 991px) {
    .internship-layout {
        grid-template-columns: 1fr;
    }

    .internship-aside {
        position: static;
    }

    .internship-period-grid {
        grid-template-columns: 1fr;
    }

    .internship-captcha-box {
        grid-template-columns: 1fr;
    }

    .internship-captcha-input {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .internship-section {
        padding-bottom: 3rem;
    }

    .internship-aside-card,
    .internship-form-panel {
        padding: 1.25rem 1.1rem 1.4rem;
    }

    .internship-form .form-grid {
        grid-template-columns: 1fr;
    }

    .internship-form-section-head {
        gap: .75rem;
    }
}

/* Footer */
.site-footer {
    background: var(--eosb-navy);
    color: rgba(255,255,255,.85);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
}

.footer-grid h4 {
    color: #fff;
    margin: 0 0 1rem;
    font-size: 1rem;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li { margin-bottom: .55rem; }
.footer-grid a:hover { color: var(--eosb-yellow); }

.newsletter-form {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: .75rem 1rem;
    border: 0;
    border-radius: .35rem;
}

.social-icons--footer {
    margin-top: 1.25rem;
}

.social-icons--footer .social-icon {
    --social-size: 25px;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .875rem;
}

.footer-bottom a:hover { color: var(--eosb-yellow); }

.back-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--eosb-yellow);
    color: var(--eosb-navy);
    border: 0;
    cursor: pointer;
    font-size: 1.25rem;
    box-shadow: var(--eosb-shadow);
    z-index: 50;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    padding: .75rem 1rem;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.page-hero {
    background: var(--eosb-navy);
    color: #fff;
    margin-top: calc(-1 * var(--header-logo-overlap));
    padding: calc(4.5rem + var(--header-logo-overlap)) 0 3rem;
}

.page-hero h1 { margin: 0; }

.page-hero--news .container {
    max-width: 920px;
    text-align: center;
}

.page-hero--news h1 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.35;
    font-weight: 800;
}

.page-hero--board,
.page-hero--directorate,
.page-hero--about {
    padding: calc(3rem + var(--header-logo-overlap)) 0 1.75rem;
}

.page-hero--board .container,
.page-hero--directorate .container,
.page-hero--about .container {
    max-width: 820px;
    text-align: center;
}

.page-hero--board h1,
.page-hero--directorate h1,
.page-hero--about h1 {
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    font-weight: 800;
}

.page-hero--about .about-intro {
    margin: .75rem auto 0;
    max-width: 680px;
    color: rgba(255, 255, 255, .9);
    font-size: .98rem;
    line-height: 1.6;
}

.page-hero--board .board-intro,
.page-hero--directorate .directorate-intro {
    margin: .75rem auto 0;
    max-width: 680px;
    text-align: center;
    color: rgba(255, 255, 255, .9);
    font-size: .98rem;
    line-height: 1.6;
}

.page-hero--board .board-intro p,
.page-hero--directorate .directorate-intro p {
    margin: 0;
}

/* Hakkımızda */
.page-hero h1 {
    margin: 0;
}

.page-intro {
    max-width: 820px;
    margin: .75rem auto 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: .92;
}

.about-page {
    padding: 3rem 0;
}

.about-kicker {
    display: block;
    margin-bottom: .35rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #2563eb;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-mission h2,
.about-vision h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: var(--eosb-navy);
    font-weight: 800;
}

.about-mission-content p,
.about-vision p {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--eosb-text);
}

.about-mission-content p:last-child,
.about-vision p:last-child {
    margin-bottom: 0;
}

.about-mission-media img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--eosb-shadow);
    object-fit: cover;
}

.about-vision {
    max-width: 920px;
    margin: 0 auto 3rem;
    padding-top: .5rem;
    border-top: 1px solid #e5e7eb;
}

.about-history {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.about-history-logo {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    object-fit: contain;
}

.about-history p {
    margin: 0;
    font-size: .98rem;
    line-height: 1.7;
    color: var(--eosb-text);
}

@media (max-width: 768px) {
    .about-mission {
        grid-template-columns: 1fr;
    }

    .about-mission-media {
        order: -1;
    }

    .about-history {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Kurumsal sayfalar */
.page-hero--corporate {
    padding: calc(3rem + var(--header-logo-overlap)) 0 1.75rem;
}

.page-hero--corporate .container,
.page-hero--compact .container {
    max-width: 820px;
    text-align: center;
}

.page-hero--corporate h1,
.page-hero--compact h1 {
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    font-weight: 800;
}

.page-hero--compact {
    padding: calc(2.5rem + var(--header-logo-overlap)) 0 1.5rem;
}

.corporate-intro {
    margin: .75rem auto 0;
    max-width: 680px;
    color: rgba(255, 255, 255, .9);
    font-size: .98rem;
    line-height: 1.6;
}

.corporate-page {
    padding: 1.5rem 0 2.5rem;
}

.service-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 2rem 2.25rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: var(--eosb-shadow);
}

.service-split-text h2 {
    margin: 0 0 1rem;
    color: var(--eosb-navy);
    font-size: 1.35rem;
    line-height: 1.3;
}

.service-split-text h3,
.corporate-panel h3.service-split-title {
    margin: 0 0 1rem;
    color: var(--eosb-navy);
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 800;
}

.service-split-text ul,
.corporate-panel ul {
    margin: .75rem 0 0;
    padding-left: 1.25rem;
}

.service-split-text li {
    line-height: 1.75;
    color: var(--eosb-text);
}

.service-split-text p {
    margin: 0 0 1rem;
    line-height: 1.75;
    color: var(--eosb-text);
}

.service-split-text p:last-child {
    margin-bottom: 0;
}

.service-split-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-split-media img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
}

.page-download {
    margin-top: 1.25rem;
}

.page-download .btn-primary {
    display: inline-block;
    padding: .75rem 1.25rem;
    background: var(--eosb-navy);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.page-download .btn-primary:hover {
    background: var(--eosb-red);
    color: #fff;
}

.page-content .inline-pdf-link {
    color: var(--eosb-navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: .15em;
}

.page-content .inline-pdf-link:hover {
    color: var(--eosb-red);
}

.service-split + .corporate-panel,
.corporate-panel + .corporate-panel,
.service-split + .service-split {
    margin-top: 1.5rem;
}

.corporate-panel {
    margin: 0;
    padding: 2rem 2.25rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: var(--eosb-shadow);
}

.corporate-panel p,
.corporate-panel li {
    line-height: 1.75;
    color: var(--eosb-text);
}

.corporate-panel p {
    margin: 0 0 1rem;
}

.corporate-panel p:last-child,
.corporate-panel ul:last-child {
    margin-bottom: 0;
}

.corporate-panel ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.corporate-panel .gallery-grid {
    margin: 0;
}

@media (max-width: 768px) {
    .service-split {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .service-split-media img {
        max-height: none;
    }

    .corporate-panel {
        padding: 1.5rem;
    }
}

.corporate-history-section {
    background: var(--eosb-navy);
    padding: 0 0 3.5rem;
}

.corporate-history-section .corporate-history {
    margin-top: 0;
}

.corporate-history {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.corporate-history-logo {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    object-fit: contain;
}

.corporate-history p {
    margin: 0;
    font-size: .98rem;
    line-height: 1.7;
    color: var(--eosb-text);
}

.values-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.values-layout--stacked {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 920px;
    margin: 0 auto;
}

.values-layout--stacked .values-media {
    max-width: 380px;
    margin: 0 auto;
}

.values-layout--stacked .values-media img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
}

.values-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.values-list--tail {
    max-width: calc(50% - 0.625rem);
    margin: 0 auto;
}

.values-media img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--eosb-shadow);
}

.values-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.values-item {
    padding: 1rem 1.1rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.values-item strong {
    display: block;
    margin-bottom: .35rem;
    color: var(--eosb-navy);
    font-size: 1.05rem;
}

.values-item span {
    display: block;
    color: var(--eosb-text);
    line-height: 1.6;
    font-size: .95rem;
}

.policy-block {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.policy-block:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-block h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    color: var(--eosb-navy);
    font-weight: 800;
}

.policy-block-body {
    display: block;
}

.policy-block-body--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.policy-block-content p,
.policy-block-content li,
.advantages-text p {
    line-height: 1.75;
    color: var(--eosb-text);
}

.policy-block-content ul {
    margin: .75rem 0 0;
    padding-left: 1.2rem;
}

.policy-block-media img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--eosb-shadow);
}

.mevzuat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.mevzuat-heading {
    margin: 0 0 1rem;
    padding-bottom: .65rem;
    border-bottom: 2px solid var(--eosb-yellow);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--eosb-navy);
}

.mevzuat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mevzuat-list li {
    margin-bottom: .75rem;
    padding-left: 1.1rem;
    position: relative;
}

.mevzuat-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--eosb-yellow);
}

.mevzuat-list a {
    color: var(--eosb-navy);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
}

.mevzuat-list a:hover {
    color: var(--eosb-yellow-hover);
    text-decoration: underline;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-card img {
    width: 120px;
    height: auto;
    max-width: 120px;
    margin: 0 auto 1rem;
    display: block;
    object-fit: contain;
}

.advantage-card h3 {
    margin: 0;
    font-size: .92rem;
    line-height: 1.35;
    color: var(--eosb-navy);
    font-weight: 700;
    text-align: center;
}

.page-content .advantage-card img {
    width: 120px;
    max-width: 120px;
    margin: 0 auto 1rem;
    border-radius: 0;
}

.page-content .advantage-card h3 {
    margin-top: 0;
    text-align: center;
}

.advantages-text {
    max-width: 920px;
    margin: 0 auto 1rem;
}

.advantages-text p {
    margin: 0 0 1rem;
}

.kvkk-shell {
    display: grid;
    grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.25rem;
    align-items: start;
    overflow: visible;
}

.kvkk-nav {
    position: sticky;
    top: var(--header-sticky-offset, calc(var(--header-height, 88px) + 1rem));
    align-self: start;
    padding: 0;
    background: transparent;
    border: 0;
}

.kvkk-nav-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: .65rem;
    box-shadow: 0 8px 24px rgba(12, 30, 58, .06);
}

.kvkk-body {
    min-width: 0;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(12, 30, 58, .06);
}

.kvkk-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.kvkk-tab {
    display: block;
    width: 100%;
    padding: .7rem .85rem;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--eosb-navy);
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.kvkk-tab:hover {
    background: #eff6ff;
    border-color: #dbeafe;
    color: #1d4ed8;
}

.kvkk-tab.is-active {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
    box-shadow: inset 3px 0 0 #2563eb;
}

.kvkk-panels {
    min-width: 0;
}

.kvkk-tab-panel {
    display: none;
}

.kvkk-tab-panel.is-active {
    display: block;
}

.kvkk-panel-inner {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.kvkk-content {
    max-width: none;
}

.kvkk-content h2,
.kvkk-content h3,
.kvkk-content h4,
.kvkk-content .kvkk-doc-title {
    color: var(--eosb-navy);
    margin: 1.25rem 0 .75rem;
    font-weight: 800;
    line-height: 1.35;
}

.kvkk-content h2:first-child,
.kvkk-content h3:first-child,
.kvkk-content h4:first-child,
.kvkk-content .kvkk-doc-title:first-child {
    margin-top: 0;
}

.kvkk-content p,
.kvkk-content li {
    line-height: 1.75;
    color: var(--eosb-text);
}

.kvkk-content p {
    margin: 0 0 1rem;
}

.kvkk-content p:last-child,
.kvkk-content ul:last-child {
    margin-bottom: 0;
}

.kvkk-content ul,
.kvkk-content ol {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.kvkk-download-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 2rem;
    text-align: center;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
}

.kvkk-download-panel p {
    margin: 0;
    font-size: 1rem;
}

.kvkk-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.kvkk-table th,
.kvkk-table td {
    border: 1px solid #e5e7eb;
    padding: .75rem;
    text-align: left;
    vertical-align: top;
}

.kvkk-table th {
    width: 30%;
    background: #fff;
    color: var(--eosb-navy);
}

.content-block--kvkk {
    padding-top: 2rem;
}

.content-block--kvkk .corporate-page {
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 992px) {
    .kvkk-shell {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .kvkk-nav {
        position: static;
    }
}

@media (max-width: 768px) {
    .kvkk-body {
        padding: 1rem;
    }

    .kvkk-shell {
        padding: .85rem;
    }

    .kvkk-tab {
        padding: .75rem .85rem;
    }
}

.tender-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 2rem;
}

.tender-filter {
    display: inline-block;
    padding: .55rem 1rem;
    border-radius: 999px;
    border: 1px solid #dbeafe;
    background: #fff;
    color: #1e3a8a;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
}

.tender-filter.is-active {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.tender-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.tender-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--eosb-shadow);
}

.tender-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.tender-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.tender-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tender-card-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.tender-card-date span {
    display: block;
    font-size: .72rem;
}

.tender-card-date span:first-child {
    font-size: 1rem;
}

.tender-card-body {
    padding: 1.25rem;
}

.tender-card-category {
    display: inline-block;
    margin-bottom: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #2563eb;
}

.tender-card-body h2 {
    margin: 0 0 .65rem;
    font-size: 1.15rem;
    color: var(--eosb-navy);
}

.tender-card-body p {
    margin: 0 0 .75rem;
    color: var(--eosb-text);
    line-height: 1.6;
    font-size: .95rem;
}

.tender-card-more {
    color: #2563eb;
    font-weight: 600;
    font-size: .9rem;
}

.tender-empty {
    margin: 0 0 2rem;
    color: var(--eosb-text);
}

.tender-detail-category {
    display: inline-block;
    margin-bottom: .75rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tender-detail-image {
    margin-bottom: 1.5rem;
}

.tender-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--eosb-shadow);
}

.tender-detail-content p,
.tender-detail-content li {
    line-height: 1.75;
    color: var(--eosb-text);
}

.tender-doc-table-wrap {
    overflow-x: auto;
}

.tender-doc-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.tender-doc-table td {
    border: 1px solid #444;
    padding: .75rem;
}

.tender-doc-table tr:nth-child(even) {
    background: #f9f9f9;
}

.tender-doc-table a,
.tender-download-link a,
.tender-ministry-link a {
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: 4px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.tender-ministry-link,
.tender-download-link {
    text-align: center;
    margin-top: 1.5rem;
}

.tender-back {
    margin-top: 2rem;
}

.tender-back a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .values-layout,
    .values-columns,
    .policy-block-body--split,
    .corporate-history,
    .mevzuat-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-list--tail {
        max-width: none;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tender-grid {
        grid-template-columns: 1fr;
    }
}

.news-hero-date {
    margin: 1rem 0 0;
    font-size: .95rem;
    color: rgba(255, 255, 255, 0.92);
}

.news-hero-date-label {
    font-weight: 700;
}

.news-article-nav {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid #e5e7eb;
}

.news-article-nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.news-article-nav-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--eosb-navy);
    text-decoration: none;
    transition: color .2s;
}

.news-article-nav-link:hover {
    color: #2563eb;
}

.news-article-nav-link--prev {
    justify-self: start;
}

.news-article-nav-link--next {
    justify-self: end;
    text-align: right;
}

.news-article-nav-link.is-disabled {
    color: #94a3b8;
    cursor: default;
}

.news-article-nav-archive {
    justify-self: center;
    min-width: 10rem;
    text-align: center;
}

@media (max-width: 768px) {
    .news-article-nav-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .news-article-nav-link--prev,
    .news-article-nav-link--next {
        justify-self: center;
        text-align: center;
    }
}

/* Haber metin kutusu */
.news-text-box {
    max-width: 900px;
    margin: 1.75rem auto;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--eosb-yellow);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(8, 21, 40, 0.06);
    color: var(--eosb-text, #334155);
    line-height: 1.85;
}

.news-text-box > :first-child {
    margin-top: 0;
}

.news-text-box > :last-child {
    margin-bottom: 0;
}

.news-text-box p,
.news-text-box li,
.news-text-box blockquote {
    margin-bottom: 1rem;
}

.news-text-box p:last-child,
.news-text-box li:last-child,
.news-text-box blockquote:last-child {
    margin-bottom: 0;
}

.news-text-box h2,
.news-text-box h3,
.news-text-box h4 {
    color: var(--eosb-navy);
    margin-top: 0;
}

.content-block {
    padding: 3rem 0;
}

.page-hero--corporate + .content-block {
    padding-top: 2rem;
}

.page-hero--about + .content-block {
    padding-top: 2rem;
}

.page-hero--corporate + .content-block .corporate-page,
.page-hero--about + .content-block .corporate-page {
    padding-top: 0;
}

.corporate-panel .advantages-grid {
    margin-bottom: 0;
}

.corporate-panel .advantages-text {
    max-width: none;
    margin: 0;
}

@media (max-width: 768px) {
    .services-grid--top,
    .services-grid--bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}

@media (max-width: 992px) {
    .value-cards-grid,
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-carousel-column { flex-basis: calc(50% - 0.625rem); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-section .container { grid-template-columns: 1fr; }
    .mega-menu-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
    .main-nav--desktop {
        display: none !important;
    }

    :root {
        --header-nav-pad-top: .55rem;
        --header-logo-pad-bottom: .7rem;
        --header-logo-img-height: 62px;
    }

    .main-header::before {
        height: calc(.65rem + var(--header-logo-overlap));
    }

    .header-inner {
        padding-top: .65rem;
    }

    .brand--floating {
        padding: var(--header-nav-pad-top) 1rem var(--header-logo-pad-bottom);
    }

    .brand--floating .brand-logo-img {
        max-width: min(220px, 56vw);
    }
}

@media (max-width: 768px) {
    :root {
        --header-nav-pad-top: .5rem;
        --header-logo-pad-bottom: .65rem;
        --header-logo-img-height: 58px;
    }

    .menu-toggle {
        display: flex;
        align-self: flex-start;
        margin-top: var(--header-nav-pad-top);
    }

    .main-nav.main-nav--mobile {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        box-shadow: var(--eosb-shadow);
        display: none;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        z-index: 240;
    }

    body.nav-open .main-nav.main-nav--mobile { display: block; }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .nav-item { width: 100%; }

    .nav-link { width: 100%; justify-content: space-between; }

    .dropdown-menu,
    .mega-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: 0;
        padding-left: 1rem;
    }

    body.nav-open .has-dropdown.mobile-open .dropdown-menu,
    body.nav-open .has-mega.mobile-open .mega-menu {
        display: block;
    }

    .has-dropdown .nav-link,
    .has-mega .nav-link {
        cursor: pointer;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        padding: .5rem 0;
        gap: 1rem;
    }

    .utility-buttons {
        display: none;
    }

    .utility-bar-inner {
        gap: .75rem;
    }

    .utility-contact {
        gap: .75rem;
    }

    .utility-contact-link span:not(.utility-contact-icon) {
        font-size: .74rem;
    }

    .utility-right {
        gap: .5rem;
    }

    .value-cards-grid,
    .news-grid,
    .services-grid--top,
    .services-grid--bottom,
    .footer-grid,
    .gallery-grid { grid-template-columns: 1fr; }

    .news-carousel {
        padding: 0 2.25rem;
    }

    .news-carousel-column {
        flex-basis: 100%;
    }

    .news-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .hero { min-height: 624px; }

    .newsletter-form { flex-direction: column; }
}

/* Firmalar */
.companies-page {
    padding: 2.5rem 0 4rem;
}

.companies-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem 1.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: var(--eosb-shadow);
}

.companies-filter-group {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    min-width: min(100%, 260px);
    flex: 1 1 220px;
}

.companies-filter-group label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--eosb-navy);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.companies-filter-group select {
    width: 100%;
    min-height: 44px;
    padding: .65rem .85rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    color: var(--eosb-text);
    font-size: .95rem;
    cursor: pointer;
}

.companies-filter-group select:focus {
    outline: none;
    border-color: var(--eosb-navy);
    box-shadow: 0 0 0 3px rgba(12, 30, 58, .12);
}

.companies-filter-reset {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 1rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--eosb-navy);
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #f9fafb;
}

.companies-filter-reset:hover {
    background: #f3f4f6;
}

.company-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.company-card {
    display: flex;
    flex-direction: column;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(12, 30, 58, .06);
    min-height: 100%;
}

.company-card-top {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .85rem;
    padding: 1.25rem 1rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f3f4f6;
}

.company-section-badge {
    position: absolute;
    top: .65rem;
    right: .65rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .65rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    color: var(--eosb-navy);
    background: #fff;
    border: 1px solid rgba(12, 30, 58, .15);
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(12, 30, 58, .08);
    white-space: nowrap;
}

.company-section-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--eosb-yellow);
    flex-shrink: 0;
}

.company-logo-box {
    width: 120px;
    height: 120px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem;
}

.company-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-logo-placeholder {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--eosb-navy);
    line-height: 1;
}

.company-website-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 1.25rem;
    max-width: 100%;
    padding: 0 .5rem;
}

.company-web-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #2563eb;
    line-height: 0;
    transform: translateY(1px);
}

.company-web-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.company-website-text {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .84rem;
    line-height: 1;
    word-break: break-word;
}

.company-website-label {
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.company-website-colon {
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin-right: .15rem;
}

.company-website {
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.company-website--empty {
    color: var(--eosb-muted);
    font-weight: 600;
    line-height: 1.25;
}

.company-website:hover {
    color: var(--eosb-navy);
    text-decoration: underline;
}

.company-card-main {
    display: grid;
    grid-template-columns: 1fr;
    flex: 1;
}

.company-card-info {
    padding: 1.15rem 1.25rem;
}

.company-name {
    margin: 0;
    padding: 0 .75rem;
    font-size: .95rem;
    line-height: 1.45;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: #111;
    max-width: 100%;
}

.company-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.company-meta li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .88rem;
    line-height: 1.5;
    padding-bottom: .45rem;
    border-bottom: 1px solid #e5e7eb;
}

.company-meta li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.company-meta-icon {
    width: 18px;
    flex-shrink: 0;
    text-align: center;
    color: #2563eb;
    margin-top: .15rem;
}

.company-meta a {
    color: inherit;
}

.company-meta a:hover {
    color: var(--eosb-navy);
    text-decoration: underline;
}

.company-card-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: .75rem;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.company-card-production {
    font-size: .88rem;
    line-height: 1.45;
    color: #111;
}

.company-production-line {
    display: grid;
    grid-template-columns: minmax(0, 7.4rem) minmax(0, 1fr);
    gap: .35rem;
    align-items: baseline;
}

.company-production-line + .company-production-line {
    margin-top: .25rem;
}

.company-brand-line {
    margin-top: .5rem;
    padding-top: .5rem;
    border-top: 1px solid #e5e7eb;
}

.company-production-label {
    flex-shrink: 0;
}

.company-production-value--empty {
    color: var(--eosb-muted);
    font-weight: 600;
}

.company-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
}

.company-video--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eceff3;
    color: var(--eosb-muted);
    font-size: .95rem;
    font-weight: 600;
}

.company-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.companies-empty {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--eosb-muted);
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 14px;
}

@media (min-width: 768px) {
    .company-card-main {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .company-card-side {
        border-top: 0;
        border-left: 1px solid #e5e7eb;
        padding: 1.15rem 1.25rem;
    }

    .company-video {
        min-height: 168px;
    }
}

@media (min-width: 992px) {
    .company-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

/* Yönetim Kurulu */
.board-page {
    padding: 2.5rem 0 3rem;
}

.board-page .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
}

.board-tier {
    width: 100%;
    margin: 0;
}

.board-tier--lead {
    display: flex;
    justify-content: center;
}

/* 3 üyelik satırı ile 4 üyelik satırı arası: 1.5rem + 0.75rem = 2.25rem */
.board-tier.board-members-grid--3 {
    margin-bottom: 0.75rem;
}

.board-member {
    width: min(100%, 228px);
    text-align: center;
}

.board-member--clickable {
    cursor: pointer;
}

.board-member--clickable:focus-visible .board-member-card {
    outline: 2px solid var(--eosb-yellow);
    outline-offset: 3px;
}

.board-member-card {
    width: 100%;
    min-height: 248px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(12, 30, 58, .08);
    padding: .85rem .75rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.board-member--clickable:hover .board-member-card,
.board-member--clickable:focus-visible .board-member-card {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 30, 58, .12);
}

.board-member-photo {
    width: 100%;
    max-width: 118px;
    aspect-ratio: 4 / 5;
    margin: 0 auto .75rem;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f4f6;
    flex-shrink: 0;
}

.board-member-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    transition: transform .25s ease;
}

.board-member--clickable:hover .board-member-photo img {
    transform: scale(1.03);
}

.board-member-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--eosb-navy);
    background: #eceff3;
}

.board-member-body {
    width: 100%;
    padding-top: .15rem;
}

.board-member-name {
    margin: 0 0 .45rem;
    font-size: .9rem;
    font-weight: 800;
    color: #111;
    line-height: 1.35;
    white-space: nowrap;
}

.board-member-role {
    margin: 0;
    font-size: .8rem;
    line-height: 1.45;
    color: #374151;
}

.board-members-grid {
    display: grid;
    gap: 1.5rem 1.75rem;
    align-items: stretch;
    justify-items: center;
}

.board-members-grid--3 {
    grid-template-columns: repeat(3, 228px);
    justify-content: center;
    max-width: none;
    margin: 0 auto;
}

.board-members-grid--4 {
    grid-template-columns: repeat(4, 228px);
    justify-content: center;
    max-width: none;
    margin: 0 auto;
}

body.board-modal-open {
    overflow: hidden;
}

.board-modal[hidden] {
    display: none !important;
}

.board-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.board-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 21, 40, .72);
}

.board-modal-dialog {
    position: relative;
    width: min(100%, 920px);
    max-height: min(90vh, 900px);
    overflow: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(8, 21, 40, .28);
    padding: 1.75rem 1.75rem 2rem;
}

.board-modal-close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.board-modal-close:hover {
    background: #e5e7eb;
}

.board-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.board-modal-kicker {
    margin: 0 0 .35rem;
    font-size: .92rem;
    font-weight: 700;
    color: var(--eosb-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.board-modal-title {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: var(--eosb-navy);
}

.board-modal-subtitle {
    margin: .45rem 0 0;
    font-size: .95rem;
    font-weight: 700;
    color: var(--eosb-yellow);
}

.board-modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.board-modal-photo-wrap {
    text-align: center;
}

.board-modal-photo {
    width: min(100%, 320px);
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(12, 30, 58, .12);
}

.board-bio-content {
    color: #1f2937;
    font-size: .96rem;
    line-height: 1.75;
}

.board-bio-content h3,
.board-bio-content h4 {
    color: var(--eosb-navy);
    margin: 1.25rem 0 .75rem;
    font-size: 1.05rem;
}

.board-bio-content h3:first-child,
.board-bio-content h4:first-child,
.board-bio-content p:first-child {
    margin-top: 0;
}

.board-bio-content p {
    margin: 0 0 1rem;
}

.board-bio-content ul,
.board-bio-content ol {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
}

.board-bio-content li {
    margin-bottom: .55rem;
}

.board-bio-content strong,
.board-bio-content b {
    color: #111;
}

.board-bio-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .board-modal-body {
        grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
        align-items: start;
    }

    .board-modal-photo-wrap {
        position: sticky;
        top: 0;
    }
}

@media (max-width: 991px) {
    .board-members-grid--3,
    .board-members-grid--4 {
        grid-template-columns: repeat(2, 228px);
        justify-content: center;
        gap: 1.5rem 1.25rem;
    }
}

@media (max-width: 575px) {
    .board-members-grid--3,
    .board-members-grid--4 {
        grid-template-columns: min(100%, 228px);
        justify-content: center;
        gap: 1.5rem;
    }

    .board-member {
        width: min(100%, 228px);
        margin: 0 auto;
    }

    .board-member-name {
        white-space: normal;
    }

    .board-modal-dialog {
        padding: 1.25rem 1rem 1.5rem;
    }
}

/* Bölge Müdürlüğü */
.directorate-page {
    padding: 2.5rem 0 3rem;
}

.directorate-page .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.75rem;
}

.directorate-tier {
    width: 100%;
    margin: 0;
}

.directorate-tier--lead {
    display: flex;
    justify-content: center;
}

.directorate-staff {
    width: min(100%, 260px);
    text-align: center;
}

.directorate-staff-card {
    width: 100%;
    min-height: 300px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(12, 30, 58, .08);
    padding: .85rem .85rem 1.1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.directorate-staff-photo {
    width: 100%;
    max-width: 130px;
    aspect-ratio: 13 / 15;
    margin: 0 auto .85rem;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f4f6;
    flex-shrink: 0;
}

.directorate-staff-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
}

.directorate-staff-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--eosb-navy);
    background: #eceff3;
}

.directorate-staff-body {
    width: 100%;
}

.directorate-staff-name {
    margin: 0 0 .65rem;
    font-size: .95rem;
    font-weight: 800;
    color: #111;
    line-height: 1.35;
}

.directorate-staff-line {
    margin: 0 0 .45rem;
    font-size: .78rem;
    line-height: 1.5;
    color: #374151;
}

.directorate-staff-line:last-child {
    margin-bottom: 0;
}

.directorate-staff-line a {
    color: var(--eosb-navy);
    text-decoration: none;
    word-break: break-all;
}

.directorate-staff-line a:hover {
    text-decoration: underline;
}

.directorate-staff-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 260px));
    gap: 1.5rem 1.25rem;
    justify-content: center;
    align-items: stretch;
}

@media (max-width: 1199px) {
    .directorate-staff-grid {
        grid-template-columns: repeat(3, minmax(0, 260px));
    }
}

@media (max-width: 991px) {
    .directorate-staff-grid {
        grid-template-columns: repeat(2, minmax(0, 260px));
        gap: 1.5rem 1rem;
    }
}

@media (max-width: 575px) {
    .directorate-staff-grid {
        grid-template-columns: min(100%, 260px);
    }

    .directorate-staff {
        width: min(100%, 260px);
        margin: 0 auto;
    }
}

/* Hata sayfaları */
.error-page-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.error-page-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(12, 30, 58, .06);
}

.error-page-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0;
}

.error-page-brand img {
    display: block;
    width: auto;
    max-width: min(240px, 70vw);
    height: auto;
    max-height: 72px;
}

.error-page-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem 0 4rem;
}

.error-page-card {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: var(--eosb-shadow);
    padding: 2.75rem 2rem;
}

.error-page-code {
    margin: 0 0 .75rem;
    font-size: clamp(3.5rem, 12vw, 5.5rem);
    line-height: 1;
    font-weight: 800;
    color: var(--eosb-navy);
    letter-spacing: -.04em;
}

.error-page-code::after {
    content: '';
    display: block;
    width: 3.5rem;
    height: 4px;
    margin: .85rem auto 0;
    border-radius: 999px;
    background: var(--eosb-yellow);
}

.error-page-kicker {
    margin: 0 0 .5rem;
    color: var(--eosb-yellow-hover);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.error-page-title {
    margin: 0 0 1rem;
    color: var(--eosb-navy);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.35;
    font-weight: 800;
}

.error-page-message {
    margin: 0;
    color: var(--eosb-text);
    font-size: 1rem;
    line-height: 1.75;
}

.error-page-hint {
    margin: 1rem 0 0;
    color: var(--eosb-muted);
    font-size: .92rem;
    line-height: 1.65;
}

.error-page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 2rem;
}

.btn-navy-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1.35rem;
    border-radius: .35rem;
    font-weight: 700;
    font-size: .9rem;
    border: 2px solid var(--eosb-navy);
    color: var(--eosb-navy);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.btn-navy-outline:hover {
    background: var(--eosb-navy);
    color: #fff;
}

.error-page-footer {
    padding: 1.25rem 0 1.75rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.error-page-footer p {
    margin: 0;
    text-align: center;
    color: var(--eosb-muted);
    font-size: .85rem;
}

@media (max-width: 768px) {
    .error-page-card {
        padding: 2rem 1.25rem;
    }

    .error-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-page-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Tanıtım filmi popup */
body.promo-popup-open {
    overflow: hidden;
}

.promo-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    box-sizing: border-box;
}

.promo-popup.is-open {
    display: flex;
}

.promo-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 21, 40, .78);
    cursor: pointer;
}

.promo-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: calc(100vh - 2.5rem);
    overflow: auto;
    background: #fff;
    border-radius: .85rem;
    padding: 1.35rem 1.35rem 1.15rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.promo-popup-close {
    position: absolute;
    top: .65rem;
    right: .75rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.promo-popup-close:hover {
    background: #e2e8f0;
    color: var(--eosb-navy);
}

.promo-popup-header {
    text-align: center;
    padding: 0 1.5rem .25rem;
}

.promo-popup-kicker {
    margin: 0 0 .35rem;
    color: var(--eosb-yellow-hover);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.promo-popup-title {
    margin: 0 0 .5rem;
    color: var(--eosb-navy);
    font-size: clamp(1.15rem, 3vw, 1.4rem);
    font-weight: 800;
    line-height: 1.35;
}

.promo-popup-desc {
    margin: 0;
    color: var(--eosb-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.promo-popup-player {
    position: relative;
    margin-top: 1rem;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: .55rem;
    overflow: hidden;
}

.promo-popup-poster {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #000;
}

.promo-popup-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-popup-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 30, 58, .28);
    transition: background .2s ease;
}

.promo-popup-poster:hover .promo-popup-play {
    background: rgba(12, 30, 58, .42);
}

.promo-popup-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.promo-popup-iframe.is-hidden,
.promo-popup-poster.is-hidden {
    display: none;
}

.promo-popup-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .85rem;
    padding-top: .65rem;
    border-top: 1px solid #eef2f7;
}

.promo-popup-skip {
    border: 0;
    background: transparent;
    color: var(--eosb-muted);
    font-size: .86rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: .15em;
    padding: 0;
}

.promo-popup-skip:hover {
    color: var(--eosb-navy);
}

.promo-popup-link {
    font-size: .84rem;
    font-weight: 600;
    color: var(--eosb-navy);
    text-decoration: none;
}

.promo-popup-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .promo-popup {
        padding: .75rem;
        align-items: flex-end;
    }

    .promo-popup-dialog {
        padding: 1rem .85rem .9rem;
        border-radius: .85rem .85rem .65rem .65rem;
        max-height: calc(100vh - 1rem);
    }

    .promo-popup-header {
        padding: 0 .5rem;
    }

    .promo-popup-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}
