/* ==========================================================================
   Belgrad Üniversitesi — UB Rebrand Override
   main.css'ten SONRA yüklenir. Edubost CSS variable'larını ezer.
   ========================================================================== */

/* === Tiempos Headline (Klim Type Foundry — self-hosted) === */
@font-face {
    font-family: 'Tiempos Headline';
    src: url('../fonts/tiempos/TiemposHeadline-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Tiempos Headline';
    src: url('../fonts/tiempos/TiemposHeadline-MediumItalic.woff2') format('woff2');
    font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Tiempos Headline';
    src: url('../fonts/tiempos/TiemposHeadline-Semibold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Tiempos Headline';
    src: url('../fonts/tiempos/TiemposHeadline-SemiboldItalic.woff2') format('woff2');
    font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Tiempos Headline';
    src: url('../fonts/tiempos/TiemposHeadline-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Tiempos Headline';
    src: url('../fonts/tiempos/TiemposHeadline-BoldItalic.woff2') format('woff2');
    font-weight: 700; font-style: italic; font-display: swap;
}

:root {
    /* UB kimliği: deep navy + Serbian crimson + academic gold */
    --color-primary:   #0F2B5B;      /* UB deep navy */
    --color-secondary: #A51F24;      /* Serbian crimson */
    --color-violet:    #7A1419;      /* darker crimson (hover) */
    --color-heading:   #0B1E3F;
    --color-default:   #334155;
    --color-default-two: #475569;
    --color-gray:      #94a3b8;
    --color-sec-bg:    #F6F7FB;
    --color-pink:      #EAF0FA;      /* soft navy tint */
    --color-dark:      #0B1E3F;

    /* Typography — Cyrillic destekli */
    --font-body:    "Inter", "Noto Sans", system-ui, -apple-system, sans-serif;
    --font-heading: "Tiempos Headline", "EB Garamond", "Noto Sans", Georgia, serif;
    --font-caveat:  "Tiempos Headline", "EB Garamond", Georgia, serif;

    /* Accent (gold) — used for small decorative details */
    --ub-gold: #C9A227;
}

/* ------- Global typography tweaks ------- */
body {
    font-family: var(--font-body) !important;
    font-weight: 400;
    color: var(--color-default);
}
h1, h2, h3, h4, h5, h6,
.title, .sub-title, .xb-item--title,
.hero-title, .breadcrumb__title {
    font-family: var(--font-heading) !important;
    color: var(--color-heading);
    letter-spacing: -0.01em;
}

/* ------- Buttons ------- */
.thm-btn,
button.thm-btn,
.thm-btn:hover,
.thm-btn:focus {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: background .2s ease;
}
.thm-btn:hover { background: var(--color-secondary); color: #fff; }
.thm-btn--apply {
    background: var(--color-secondary);
    padding: 12px 28px;
    margin-right: 12px;
}
.thm-btn--apply:hover { background: var(--color-violet); }

/* ------- Logo / Brand ------- */
.ub-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--color-heading);
    line-height: 1;
}
.ub-brand:hover { color: var(--color-heading); }
.ub-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 22px;
    font-weight: 600;
    border-radius: 2px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.ub-brand__mark::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--ub-gold);
}
.ub-brand__text { display: flex; flex-direction: column; gap: 4px; }
.ub-brand__title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: inherit;
    line-height: 1.05;
}
.ub-brand__sub {
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

/* Dark / footer varyantı */
.ub-brand--light { color: #fff; }
.ub-brand--light:hover { color: #fff; }
.ub-brand--light .ub-brand__mark {
    background: #fff;
    color: var(--color-primary);
}
.ub-brand--light .ub-brand__sub { color: var(--ub-gold); }

@media (max-width: 575px) {
    .ub-brand__mark { width: 40px; height: 40px; font-size: 18px; }
    .ub-brand__title { font-size: 16px; }
    .ub-brand__sub { font-size: 8.5px; letter-spacing: 0.16em; }
}

/* ------- Header ------- */
#xb-header-area {
    background: #fff;
    border-bottom: 3px solid var(--color-primary);
}

/* Top bar (UB) */
.ub-topbar {
    background: linear-gradient(90deg, #0B1E3F 0%, var(--color-primary) 55%, #0B1E3F 100%);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 13px;
    border-bottom: 1px solid rgba(201,162,39,0.18);
    position: relative;
}
.ub-topbar::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--ub-gold) 50%, transparent 100%);
    opacity: 0.5;
}
.ub-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 16px;
}
.ub-topbar__left { display: flex; align-items: center; }
.ub-topbar__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ub-gold);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    font-style: italic;
    text-transform: none;
}
.ub-topbar__badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--ub-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 0 1px rgba(201,162,39,0.4);
    flex-shrink: 0;
}
.ub-topbar__right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.ub-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color .18s ease;
}
.ub-topbar__item:hover { color: var(--ub-gold); }
.ub-topbar__item--muted { color: rgba(255,255,255,0.7); cursor: default; }
.ub-topbar__item--muted:hover { color: rgba(255,255,255,0.7); }
.ub-topbar__item-icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 22px; height: 22px;
    color: var(--ub-gold);
}
.ub-topbar__sep {
    display: inline-block;
    width: 1px; height: 14px;
    background: rgba(255,255,255,0.18);
}
@media (max-width: 767px) {
    .ub-topbar__inner { flex-direction: column; padding: 8px 0; min-height: 0; gap: 6px; }
    .ub-topbar__right { gap: 10px; }
    .ub-topbar__sep { display: none; }
}

/* Header çağrı butonu — oval crimson kutu + hareketli zil */
.ub-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: var(--color-secondary);
    border: none;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -6px rgba(165,31,36,0.55);
    transition: background .18s ease, transform .18s ease;
}
.ub-call-btn:hover { background: var(--color-violet); color: #fff; transform: scale(1.06); }
.ub-call-btn__icon {
    display: inline-flex;
    transform-origin: 50% 50%;
}
.ub-call-btn__icon svg { width: 16px; height: 16px; }

/* Desktop "Giriş" butonu — outline stili */
.thm-btn--ghost-line {
    background: transparent;
    color: var(--color-heading);
    border: 1.5px solid var(--color-heading);
    padding: 9px 18px;
}
.thm-btn--ghost-line:hover {
    background: var(--color-heading);
    color: #fff;
}

@media (max-width: 575px) {
    .ub-call-btn { width: 38px; height: 38px; }
}

/* main.css mobilde .header-right'ı gizliyor — UB rebrand için göster */
@media (max-width: 1199px) {
    .header-right {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        margin-right: 6px;
    }
}
/* Logo boyutları — masaüstü/tablet orijinal kalır, sadece mobilde büyür.
   overflow + negative margin trick'iyle header yüksekliği değişmez. */
.header-logo, .xb-logo-mobile { overflow: visible; flex-shrink: 0; line-height: 0; }
.xb-header { overflow: visible; }
.header-logo img,
.xb-logo-mobile img {
    max-height: 56px;
    width: auto;
    display: block;
    max-width: 100%;
}
@media (max-width: 991px) {
    .header__wrap { gap: 0; }
    .header-logo { margin-right: 0; }
    .main-menu__wrap { flex: 0 0 auto; }
    .header-bar-mobile { margin-left: 4px; }
    .header-logo img,
    .xb-logo-mobile img { max-height: 52px; }
}
@media (max-width: 575px) {
    .header-right { gap: 6px; margin-right: 2px; }
    .header-logo img,
    .xb-logo-mobile img { max-height: 78px; margin-block: -16px; max-width: 270px; }
}
@media (max-width: 420px) {
    .header-logo img { max-height: 68px; margin-block: -12px; max-width: 220px; }
}
@media (max-width: 360px) {
    .header-logo img { max-height: 60px; margin-block: -9px; max-width: 185px; }
}

/* Sticky header — logo biraz küçülsün, header daha kompakt görünsün */
.xb-header-area-sticky .header-logo img,
.xb-header-area-sticky .xb-logo-mobile img {
    max-height: 42px;
    margin-block: 0;
    transition: max-height .25s ease;
}
@media (max-width: 991px) {
    .xb-header-area-sticky .header-logo img,
    .xb-header-area-sticky .xb-logo-mobile img { max-height: 40px; }
}
@media (max-width: 575px) {
    .xb-header-area-sticky .header-logo img,
    .xb-header-area-sticky .xb-logo-mobile img { max-height: 56px; max-width: 200px; }
}
@media (max-width: 420px) {
    .xb-header-area-sticky .header-logo img { max-height: 50px; max-width: 170px; }
}
@media (max-width: 360px) {
    .xb-header-area-sticky .header-logo img { max-height: 44px; max-width: 150px; }
}

/* Mobil arama butonu — kutusuz ikon */
.ub-search-btn {
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    color: var(--color-primary);
    cursor: pointer;
    border-radius: 50%;
    transition: color .18s ease, transform .18s ease;
}
.ub-search-btn:hover, .ub-search-btn:focus {
    color: var(--color-secondary);
    transform: scale(1.05);
    outline: none;
    box-shadow: none;
}
.ub-search-btn svg { width: 20px; height: 20px; }
@media (max-width: 575px) {
    .ub-search-btn { width: 38px; height: 38px; }
    .ub-search-btn svg { width: 18px; height: 18px; }
}

/* Lang dropdown — kendi açılım kontrolümüz (.is-open) */
.ub-lang .dropdown-menu {
    position: absolute !important;
    left: auto !important;
    right: 0 !important;
    top: 100% !important;
    margin-top: 8px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: block !important;
    transform: translateY(4px) !important;
    pointer-events: none !important;
    transition: opacity .15s ease, transform .15s ease;
}
.ub-lang.is-open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* ==========================================================================
   Mobil bottom navigation (UB) — glass-style
   ========================================================================== */
.ub-mobilebar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1040;
    padding: 0 8px calc(8px + env(safe-area-inset-bottom));
    pointer-events: none;
    transition: transform .25s ease, opacity .2s ease;
}
.ub-mobilebar__inner {
    pointer-events: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1.5px solid var(--color-primary);
    border-radius: 16px;
    box-shadow:
        0 0 0 4px rgba(15,43,91,0.06),
        0 14px 30px -14px rgba(11,30,63,0.32),
        0 3px 10px -3px rgba(11,30,63,0.12);
    padding: 4px 4px;
    font-family: var(--font-body);
    position: relative;
    min-height: 54px;
}
.ub-mobilebar__inner::before { display: none; }
.ub-mobilebar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px 2px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 10px;
    line-height: 1.1;
    position: relative;
    min-width: 0;
    border-radius: 10px;
    transition: color .18s ease, background .18s ease;
}
.ub-mobilebar__item:hover { color: var(--color-primary); }
.ub-mobilebar__item.is-active {
    color: var(--color-primary);
    background: rgba(15,43,91,0.06);
}
.ub-mobilebar__icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 22px; height: 22px;
    transition: transform .18s ease;
}
.ub-mobilebar__icon svg { width: 18px; height: 18px; }
.ub-mobilebar__item:hover .ub-mobilebar__icon { transform: translateY(-1px); }
.ub-mobilebar__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Ortadaki kayıt CTA */
.ub-mobilebar__item--cta {
    transform: translateY(-16px);
    padding: 0;
}
.ub-mobilebar__item--cta.is-active { background: transparent; }
.ub-mobilebar__cta {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #c8262c 100%);
    color: #fff;
    box-shadow:
        0 0 0 3px #fff,
        0 0 0 4px rgba(15,43,91,0.06),
        0 10px 22px -8px rgba(165,31,36,0.6);
    transition: background .2s ease, transform .2s ease;
    position: relative;
}
.ub-mobilebar__cta::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,39,0.4), transparent 70%);
    z-index: -1;
    animation: ub-mb-cta-glow 2.4s ease-in-out infinite;
}
@keyframes ub-mb-cta-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%      { opacity: 0.85; transform: scale(1.15); }
}
.ub-mobilebar__cta svg { width: 22px; height: 22px; }
.ub-mobilebar__item--cta:hover .ub-mobilebar__cta {
    background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-secondary) 100%);
    transform: scale(1.06) rotate(-4deg);
}
.ub-mobilebar__item--cta.is-active .ub-mobilebar__cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3d7a 100%);
}
.ub-mobilebar__label--cta {
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 9.5px;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* WhatsApp & Ara — diğerleriyle aynı navy renk */
.ub-mobilebar__icon--wa { color: var(--color-primary); }
.ub-mobilebar__icon--wa svg { color: currentColor; }
.ub-mobilebar__item--wa:hover .ub-mobilebar__icon--wa { transform: scale(1.08); }

.ub-mobilebar__icon--ring {
    color: var(--color-primary);
    animation: ub-call-shake 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .ub-mobilebar__icon--ring { animation: none; }
    .ub-mobilebar__cta::before { animation: none; }
}

/* Mobil menü açıldığında bottom bar gizlensin */
body:has(.xb-header-menu.active) .ub-mobilebar {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}

/* Sayfa içeriğinin bar altında kalmaması için */
@media (max-width: 991px) {
    body { padding-bottom: 70px; }
    .xb-backtotop { bottom: 82px; }
}
@media (min-width: 992px) {
    .ub-mobilebar { display: none; }
}

.main-menu > ul > li > a {
    color: var(--color-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    padding: 20px 14px;
}
.main-menu > ul > li:hover > a,
.main-menu > ul > li.active > a {
    color: var(--color-primary);
}
.main-menu > ul > li.menu-item-has-children > a::after {
    color: var(--color-primary);
}

/* Language switcher (UB) — kutusuz, bayraklı */
.ub-lang { position: relative; }
.ub-lang__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 4px 6px;
    color: var(--color-heading);
    cursor: pointer;
    border-radius: 4px;
    transition: color .18s ease, background .18s ease;
    font-family: var(--font-body);
}
.ub-lang__toggle::after { display: none; }
.ub-lang__toggle:hover {
    color: var(--color-primary);
    background: rgba(15,43,91,0.06);
}
.ub-lang__flag {
    display: inline-flex;
    width: 24px; height: 16px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(15,43,91,0.12);
    flex-shrink: 0;
}
.ub-lang__flag svg { width: 100%; height: 100%; display: block; }
.ub-lang__code {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
@media (max-width: 575px) {
    .ub-lang__code { font-size: 11px; }
    .ub-lang__toggle { gap: 4px; padding: 4px; }
}
.ub-lang__menu {
    min-width: 180px;
    padding: 6px;
    margin-top: 8px;
    border: 1px solid rgba(15,43,91,0.08);
    border-radius: 6px;
    box-shadow: 0 18px 38px -16px rgba(11,30,63,0.25);
}
.ub-lang__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 4px;
    color: var(--color-heading);
    text-decoration: none;
    font-size: 14px;
    transition: background .15s ease, color .15s ease;
}
.ub-lang__item:hover {
    background: var(--color-pink);
    color: var(--color-primary);
}
.ub-lang__item.is-active {
    background: var(--color-primary);
    color: #fff;
}
.ub-lang__item-flag {
    display: inline-flex;
    width: 24px; height: 16px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(15,43,91,0.12);
    flex-shrink: 0;
}
.ub-lang__item-flag svg { width: 100%; height: 100%; display: block; }
.ub-lang__item.is-active .ub-lang__item-flag { box-shadow: 0 0 0 1px rgba(255,255,255,0.4); }
.ub-lang__item-code {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--color-default-two);
    margin-left: auto;
}
.ub-lang__item.is-active .ub-lang__item-code { color: rgba(255,255,255,0.7); }
.ub-lang__item-label { flex: 1; }
@media (max-width: 575px) {
    .ub-lang__toggle { padding: 6px 10px; }
    .ub-lang__code { display: none; }
    .ub-lang__chevron { display: none; }
}

/* ------- Hero / Breadcrumb ------- */
.breadcrumb-area, .breadcrumb__area {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3d7a 100%);
    color: #fff;
}
.breadcrumb__title, .breadcrumb-area h2 { color: #fff; }
.breadcrumb__list a, .breadcrumb__list span { color: rgba(255,255,255,0.85); }

/* Home hero */
.hero-area, .hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3d7a 100%);
    color: #fff;
}
.hero-area .title,
.hero-area h1,
.hero-section h1 { color: #fff; }
.hero-area .sub-title,
.hero-area p { color: rgba(255,255,255,0.92); }

/* ------- Section sub-titles (small accent text above h2) ------- */
.sub-title {
    color: var(--color-secondary);
    font-family: var(--font-body) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ------- Cards / Course grid ------- */
.xb-course, .courses-item, .course-card {
    border-radius: 4px;
    border: 1px solid #e8e9ee;
    transition: transform .25s ease, box-shadow .25s ease;
}
.xb-course:hover, .courses-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 43, 91, 0.12);
}
.xb-course .price, .xb-course .xb-item--price,
.courses-item .price {
    color: var(--color-secondary);
    font-weight: 700;
}

/* ------- Faculty card (özel komponent) ------- */
.faculty-card {
    background: #fff;
    border: 1px solid #e8e9ee;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.faculty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 43, 91, 0.12);
}
.faculty-card__media {
    aspect-ratio: 16 / 10;
    background: var(--color-primary) url('/assets/img/beograd/placeholder.svg') center/cover no-repeat;
    position: relative;
}
.faculty-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.faculty-card__group {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 2px;
}
.faculty-card__body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.faculty-card__title {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.25;
    color: var(--color-heading);
    margin: 0;
}
.faculty-card__title a { color: inherit; text-decoration: none; }
.faculty-card__title a:hover { color: var(--color-primary); }
.faculty-card__tagline {
    color: var(--color-default-two);
    font-size: 14px;
    margin: 0;
}
.faculty-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 13px;
    color: var(--color-default);
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #eef0f4;
}
.faculty-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.faculty-card__meta i { color: var(--color-primary); }
.faculty-card__fee {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-secondary);
    font-weight: 600;
}
.faculty-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-top: 8px;
}
.faculty-card__cta:hover { color: var(--color-secondary); }

/* ------- Group filter pills ------- */
.group-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.group-filter__btn {
    background: #fff;
    border: 1px solid #d8dce5;
    color: var(--color-heading);
    padding: 10px 22px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
}
.group-filter__btn:hover,
.group-filter__btn.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* ------- Fee table ------- */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e6e8ef;
}
.fee-table thead {
    background: var(--color-primary);
    color: #fff;
}
.fee-table th {
    padding: 16px 18px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.fee-table td {
    padding: 14px 18px;
    border-top: 1px solid #eef0f4;
    color: var(--color-default);
    font-size: 14px;
}
.fee-table tr:hover td { background: #f8fafc; }
.fee-table .fee-amount {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}
.fee-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 0;
}
.fee-tabs__btn {
    background: transparent;
    border: none;
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-default-two);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.fee-tabs__btn.is-active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: #fff;
}

/* Mobil — tablo kompakt, taşan kısım yatay scroll */
@media (max-width: 768px) {
    .fee-tabs {
        gap: 4px;
        border-bottom: none;
        overflow-x: auto;
        scrollbar-width: none;
        flex-wrap: nowrap;
        padding-bottom: 6px;
    }
    .fee-tabs::-webkit-scrollbar { display: none; }
    .fee-tabs__btn {
        flex-shrink: 0;
        padding: 9px 14px;
        font-size: 13px;
        background: var(--color-sec-bg);
        border: 1px solid #e6e8ef;
        border-radius: 999px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    .fee-tabs__btn.is-active {
        background: var(--color-primary);
        color: #fff;
        border-color: var(--color-primary);
    }
    .table-responsive { overflow-x: visible; }
    .fee-table { width: 100%; font-size: 13px; table-layout: auto; }
    .fee-table th, .fee-table td { padding: 11px 8px; white-space: normal; }
    .fee-table th { font-size: 13px; letter-spacing: 0.02em; }
    .fee-table th[style*="width:120px"], .fee-table td:nth-child(2) { width: 56px !important; text-align: center; padding: 11px 4px; }
    .fee-table th[style*="width:220px"], .fee-table td:nth-child(3) { display: none; } /* dil kolonunu gizle */
    .fee-table th[style*="width:180px"], .fee-table td:nth-child(4) { width: 92px !important; text-align: right; padding-right: 12px; }
    .fee-table .fee-amount { font-size: 14px; white-space: nowrap; }
    .fee-table td:first-child a { font-size: 13px; line-height: 1.35; display: block; }
}
@media (max-width: 480px) {
    .fee-table { font-size: 12.5px; }
    .fee-table th, .fee-table td { padding: 10px 6px; }
    .fee-table th { font-size: 12px; }
    .fee-table th[style*="width:120px"], .fee-table td:nth-child(2) { width: 48px !important; }
    .fee-table th[style*="width:180px"], .fee-table td:nth-child(4) { width: 80px !important; padding-right: 8px; }
    .fee-table .fee-amount { font-size: 13px; }
    .fee-table td:first-child { padding-left: 10px; }
    .fee-table td:first-child a { font-size: 12.5px; }
}

/* ------- Group cards on home ------- */
.group-card {
    display: block;
    background: #fff;
    border: 1px solid #e8e9ee;
    border-radius: 4px;
    padding: 32px 26px;
    text-decoration: none;
    color: inherit;
    transition: all .25s ease;
    height: 100%;
}
.group-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(15, 43, 91, 0.12);
    transform: translateY(-4px);
}
.group-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 2px;
    background: var(--color-sec-bg);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.group-card__title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-heading);
    margin-bottom: 8px;
}
.group-card__count {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ------- Forms (UB) — sharp, kurumsal ------- */
.ub-form {
    max-width: 660px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.ub-form__row {
    display: grid;
    gap: 22px;
}
.ub-form__row--1 { grid-template-columns: 1fr; }
.ub-form__row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ub-form__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 575px) {
    .ub-form__row--2, .ub-form__row--3 { grid-template-columns: 1fr; gap: 16px; }
}

.field {
    position: relative;
    display: flex;
    flex-direction: column;
}
.field__label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-pink);
    line-height: 1.2;
    min-height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.field__label::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--ub-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.field__label .form-required { color: var(--color-secondary); margin-left: -2px; font-weight: 700; }

.field__input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0;
    border: none;
    border-bottom: 2px solid #dbdfe7;
    border-radius: 0;
    background: transparent;
    padding: 0 2px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 42px;
    color: var(--color-heading);
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color .15s ease, background .15s ease;
}
input[type="number"].field__input { -moz-appearance: textfield; }
input[type="number"].field__input::-webkit-outer-spin-button,
input[type="number"].field__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    display: none;
}
.field__input::placeholder { color: #b0b6c2; font-weight: 400; }
.field__input:hover { border-bottom-color: var(--color-default-two); }
.field__input:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
    background: transparent;
}
/* Tarayıcı autofill sarı zemini kaldır */
.field__input:-webkit-autofill,
.field__input:-webkit-autofill:hover,
.field__input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-text-fill-color: var(--color-heading);
    transition: background-color 5000s ease-in-out 0s;
}

.field--textarea .field__input {
    height: auto !important;
    min-height: 130px !important;
    max-height: none !important;
    border: 2px solid #dbdfe7;
    padding: 12px 14px;
    resize: vertical;
    line-height: 1.55;
}
.field--textarea .field__input:focus {
    border-color: var(--color-primary);
    background: #fff;
}

.field--select { position: relative; }
.field--select select {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0;
    border: none;
    border-bottom: 2px solid #dbdfe7;
    border-radius: 0;
    background: transparent;
    padding: 0 28px 0 2px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 42px;
    font-weight: 500;
    color: var(--color-heading);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color .15s ease, background .15s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F2B5B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    background-size: 16px;
}
.field--select select:hover { border-bottom-color: var(--color-default-two); }
.field--select select:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
}

.field__hint {
    display: block;
    margin-top: 6px;
    color: var(--color-default-two);
    font-size: 12px;
    line-height: 1.45;
    padding-left: 0;
}
.field__counter {
    display: block;
    margin-top: 6px;
    text-align: right;
    color: var(--color-default-two);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Consent (compact text) */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 4px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--color-default-two);
    cursor: pointer;
}
.form-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px; height: 16px;
    border: 1.5px solid var(--color-primary);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: background .15s ease;
}
.form-consent input[type="checkbox"]:checked { background: var(--color-primary); }
.form-consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 3px; top: 0;
    width: 6px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Submit row */
.form-submit {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid #eef0f4;
}
.form-submit .thm-btn {
    padding: 13px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.form-submit__notice {
    color: var(--color-default-two);
    font-size: 12.5px;
    line-height: 1.5;
    max-width: 320px;
    margin: 0;
}
.form-submit__notice strong { color: var(--color-heading); font-weight: 600; }

/* Eski class'lar geri-uyum (input/select/textarea fall-through) */
.form-group { margin-bottom: 14px; }
.form-label {
    display: block;
    font-weight: 600;
    font-size: 12px;
    color: var(--color-default-two);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.honeypot { display: none !important; }
.alert-success, .alert-error {
    padding: 14px 18px;
    border-radius: 2px;
    margin-bottom: 24px;
    font-weight: 500;
}
.alert-success { background: #E8F3EC; color: #1B5E20; border-left: 4px solid #2E7D32; }
.alert-error   { background: #FBEAEA; color: #7A1419; border-left: 4px solid var(--color-secondary); }

/* ------- Footer (UB) ------- */
.ub-footer {
    background: #0B1E3F;
    color: rgba(255,255,255,0.78);
    font-family: var(--font-body);
    position: relative;
}
.ub-footer a { color: inherit; transition: color .18s ease; }
.ub-footer a:hover { color: var(--ub-gold); }

/* Üst bilgi şeridi */
.ub-footer__strip {
    background: var(--color-primary);
    border-top: 3px solid var(--color-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ub-footer__strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.ub-footer__strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.08);
    min-height: 92px;
}
.ub-footer__strip-item:last-child { border-right: none; }
.ub-footer__strip-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,162,39,0.4);
    border-radius: 2px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ub-gold);
    transition: background .18s ease, border-color .18s ease;
}
.ub-footer__strip-item:hover .ub-footer__strip-icon {
    background: var(--ub-gold);
    border-color: var(--ub-gold);
    color: var(--color-primary);
}
.ub-footer__strip-body { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.ub-footer__strip-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ub-gold);
    margin-bottom: 4px;
}
.ub-footer__strip-value {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ub-footer__strip-item:hover .ub-footer__strip-value { color: #fff; }

/* Mobile: strip stack — adres taşmasın */
@media (max-width: 768px) {
    .ub-footer__strip-grid { grid-template-columns: 1fr; }
    .ub-footer__strip-item {
        padding: 14px 18px;
        min-height: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .ub-footer__strip-item:last-child { border-bottom: none; }
    .ub-footer__strip-value {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        font-size: 14px;
        line-height: 1.45;
    }
}

/* Ana footer */
.ub-footer__main {
    padding: 70px 0 48px;
    background:
        radial-gradient(1100px 320px at 90% 0%, rgba(165,31,36,0.10), transparent 60%),
        radial-gradient(900px 320px at 0% 100%, rgba(15,43,91,0.45), transparent 60%);
}
.ub-footer__brand { padding-right: 24px; }
.ub-footer__logo { display: inline-block; margin-bottom: 22px; }
.ub-footer__logo img { max-width: 220px; height: auto; }
.ub-footer__about {
    color: rgba(255,255,255,0.72);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}
.ub-footer__social {
    display: flex; gap: 10px;
    list-style: none; padding: 0; margin: 0;
}
.ub-footer__social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 2px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.ub-footer__social a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}
.ub-footer__social svg { width: 16px; height: 16px; }

.ub-footer__col { padding-top: 4px; }
.ub-footer__title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 22px;
    padding-bottom: 14px;
    position: relative;
    letter-spacing: 0.01em;
}
.ub-footer__title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 2px;
    background: var(--ub-gold);
}
.ub-footer__links,
.ub-footer__contact {
    list-style: none;
    padding: 0; margin: 0;
}
.ub-footer__links li { margin-bottom: 10px; }
.ub-footer__links a {
    color: rgba(255,255,255,0.74);
    font-size: 14.5px;
    text-decoration: none;
    position: relative;
    padding-left: 14px;
    display: inline-block;
}
.ub-footer__links a::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 6px; height: 1px;
    background: rgba(201,162,39,0.6);
    transform: translateY(-50%);
    transition: width .18s ease, background .18s ease;
}
.ub-footer__links a:hover {
    color: var(--ub-gold);
    padding-left: 18px;
}
.ub-footer__links a:hover::before { width: 12px; background: var(--ub-gold); }

.ub-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.78);
    font-size: 14.5px;
    line-height: 1.55;
}
.ub-footer__contact-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    color: var(--ub-gold);
    margin-top: 1px;
}
.ub-footer__contact a { color: rgba(255,255,255,0.85); text-decoration: none; }

/* Alt menü şeridi */
.ub-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.18);
    padding: 18px 0;
}
.ub-footer__bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.ub-footer__copyright {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.ub-footer__copyright a { color: #fff; text-decoration: none; }
.ub-footer__bottom-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0; margin: 0;
}
.ub-footer__bottom-menu li {
    position: relative;
    padding: 0 16px;
}
.ub-footer__bottom-menu li + li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 1px; height: 12px;
    background: rgba(255,255,255,0.18);
    transform: translateY(-50%);
}
.ub-footer__bottom-menu a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}
.ub-footer__bottom-menu a:hover { color: var(--ub-gold); }

@media (max-width: 991px) {
    .ub-footer__strip-grid { grid-template-columns: 1fr; }
    .ub-footer__strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .ub-footer__strip-item:last-child { border-bottom: none; }
    .ub-footer__main { padding: 56px 0 36px; }
    .ub-footer__brand { padding-right: 0; }
}
@media (max-width: 575px) {
    .ub-footer__bottom-grid { justify-content: center; text-align: center; }
    .ub-footer__bottom-menu { justify-content: center; }
}

/* ==========================================================================
   Corporate pages (about, campus, …) — modüler şablon
   ========================================================================== */
.corp-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 120px 0 90px;
    isolation: isolate;
}
.corp-hero__bg {
    position: absolute;
    inset: -1px;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    z-index: -2;
}
.corp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(95deg, rgba(8,22,50,0.92) 0%, rgba(11,30,63,0.78) 45%, rgba(15,43,91,0.5) 100%),
        linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
}
.corp-hero__inner { max-width: 880px; }
.corp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ub-gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.corp-hero__eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--ub-gold);
}
.corp-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 600;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}
.corp-hero__lead {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    max-width: 720px;
    margin: 0;
}

/* Stats strip */
.corp-stats { background: #fff; border-bottom: 1px solid #eef0f4; }
.corp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.corp-stats__card {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid #eef0f4;
    transition: background .18s ease;
}
.corp-stats__card:last-child { border-right: none; }
.corp-stats__card:hover { background: var(--color-pink); }
.corp-stats__num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.corp-stats__label {
    color: var(--color-default-two);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* Mission */
.corp-mission__lead {
    font-size: 16.5px;
    color: var(--color-default);
    line-height: 1.7;
    margin-top: 18px;
}
.corp-mission__pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.corp-mission__pillar {
    background: #fff;
    border: 1px solid #e6e8ef;
    padding: 26px 24px;
    border-radius: 2px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.corp-mission__pillar:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -18px rgba(11,30,63,0.18);
    border-color: var(--color-primary);
}
.corp-mission__icon {
    display: inline-flex;
    width: 46px; height: 46px;
    align-items: center; justify-content: center;
    background: var(--color-pink);
    color: var(--color-primary);
    margin-bottom: 14px;
}
.corp-mission__pillar h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0 0 8px;
}
.corp-mission__pillar p {
    color: var(--color-default-two);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* Services */
.corp-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.corp-services__card {
    background: #fff;
    border: 1px solid #e6e8ef;
    padding: 30px 28px 28px;
    border-radius: 2px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}
.corp-services__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: var(--color-secondary);
    transition: width .35s ease;
}
.corp-services__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -22px rgba(11,30,63,0.20);
}
.corp-services__card:hover::before { width: 100%; }
.corp-services__num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--ub-gold);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}
.corp-services__card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0 0 8px;
}
.corp-services__card p {
    color: var(--color-default-two);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* Timeline — editorial milestone listesi */
.corp-timeline.section-pad { padding: 70px 0; }
.corp-timeline .section-head {
    text-align: left;
    max-width: 720px;
    margin: 0 0 18px;
}
.corp-timeline .section-head .sub-title { margin-bottom: 6px; }
.corp-timeline .section-head .title {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 0;
}

.corp-timeline__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 880px;
    border-top: 1px solid var(--color-pink);
}
.corp-timeline__list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 28px;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-pink);
    transition: background .15s ease;
}
.corp-timeline__list li:hover { background: rgba(15,43,91,0.015); }
.corp-timeline__year {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.01em;
    position: relative;
    padding-right: 16px;
}
.corp-timeline__year::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    width: 6px; height: 1px;
    background: var(--ub-gold);
    transform: translateY(-50%);
}
.corp-timeline__list h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0 0 6px;
    line-height: 1.3;
}
.corp-timeline__list p {
    color: var(--color-default-two);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* Compliance */
.corp-compliance__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.corp-compliance__list li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #e0e4eb;
    align-items: flex-start;
}
.corp-compliance__list li:last-child { border-bottom: none; }
.corp-compliance__check {
    flex-shrink: 0;
    width: 30px; height: 30px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-top: 2px;
}
.corp-compliance__list strong {
    display: block;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 3px;
}
.corp-compliance__list span {
    color: var(--color-default-two);
    font-size: 14.5px;
    line-height: 1.55;
}

/* Campus — intro chips, costs, districts */
.campus-intro__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.campus-intro__chips span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-pink);
    color: var(--color-primary);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.campus-intro__chips svg { color: var(--color-secondary); }
.campus-intro__image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 26px 50px -28px rgba(11,30,63,0.35);
}
.campus-intro__image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.campus-intro__caption {
    position: absolute;
    left: 18px; bottom: 18px;
    background: rgba(11,30,63,0.85);
    color: #fff;
    padding: 8px 14px;
    border-radius: 2px;
    font-size: 12.5px;
    font-style: italic;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 36px);
}
.campus-intro__caption svg { color: var(--ub-gold); }

.campus-costs { padding: 60px 0; background: linear-gradient(180deg, #fff, var(--color-sec-bg) 100%); border-bottom: 1px solid #eef0f4; }
.campus-costs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.campus-costs__card {
    background: #fff;
    border: 1px solid #e6e8ef;
    padding: 22px 22px;
    border-radius: 2px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color .2s ease, transform .2s ease;
}
.campus-costs__card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.campus-costs__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
}
.campus-costs__label {
    color: var(--color-default-two);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 4px;
}
.campus-costs__price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1.1;
    margin-bottom: 4px;
}
.campus-costs__note {
    color: var(--color-default-two);
    font-size: 13px;
    line-height: 1.4;
}

.campus-districts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.campus-districts__card {
    background: #fff;
    border: 1px solid #e6e8ef;
    border-left: 3px solid var(--color-secondary);
    padding: 26px 28px;
    border-radius: 2px;
}
.campus-districts__card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 10px;
    letter-spacing: 0.01em;
}
.campus-districts__card p {
    color: var(--color-default-two);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Fees page modules */
.fees-note {
    background: var(--color-sec-bg);
    border-left: 4px solid var(--color-primary);
    padding: 16px 20px;
    margin-top: 32px;
    border-radius: 2px;
    color: var(--color-default-two);
    font-size: 14px;
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.fees-note svg { color: var(--color-primary); margin-top: 3px; flex-shrink: 0; }

.fees-included {
    background: #fff;
    border: 1px solid #e6e8ef;
    padding: 28px 30px;
    border-radius: 2px;
    height: 100%;
}
.fees-included--out { background: var(--color-sec-bg); }
.fees-included__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fees-included__badge {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.fees-included__badge--in { background: var(--color-primary); }
.fees-included__badge--out { background: var(--color-default-two); }
.fees-included ul { list-style: none; padding: 0; margin: 0; }
.fees-included li {
    padding: 9px 0 9px 22px;
    border-top: 1px solid #eef0f4;
    color: var(--color-default);
    font-size: 14.5px;
    line-height: 1.55;
    position: relative;
}
.fees-included li:first-child { border-top: none; }
.fees-included li::before {
    content: '';
    position: absolute;
    left: 0; top: 18px;
    width: 12px; height: 1px;
    background: var(--color-secondary);
}
.fees-included--out li::before { background: var(--color-default-two); opacity: 0.5; }

.fees-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}
.fees-plans__card {
    background: #fff;
    border: 1px solid #e6e8ef;
    padding: 32px 28px 28px;
    border-radius: 2px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fees-plans__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -22px rgba(11,30,63,0.20);
}
.fees-plans__card--featured {
    border: 2px solid var(--color-primary);
    background: linear-gradient(180deg, #fff 0%, var(--color-pink) 100%);
}
.fees-plans__tag {
    position: absolute;
    top: -12px; left: 24px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
}
.fees-plans__card header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.fees-plans__num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--ub-gold);
    line-height: 1;
    letter-spacing: 0.04em;
}
.fees-plans__card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0;
}
.fees-plans__desc {
    color: var(--color-default-two);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 14px;
}
.fees-plans__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eef0f4;
}
.fees-plans__card ul li {
    padding: 10px 0 10px 24px;
    color: var(--color-default);
    font-size: 14px;
    line-height: 1.5;
    position: relative;
}
.fees-plans__card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 16px;
    width: 10px; height: 1px;
    background: var(--color-secondary);
}

@media (max-width: 991px) {
    .fees-plans { grid-template-columns: 1fr; gap: 18px; }
}

/* Contact page */
.contact-channels { background: #fff; border-bottom: 1px solid #eef0f4; padding: 36px 0; }
.contact-channels__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.contact-channel {
    background: var(--color-sec-bg);
    border: 1px solid #e6e8ef;
    padding: 22px 22px;
    border-radius: 2px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, transform .2s ease;
}
.contact-channel:hover { border-color: var(--color-primary); transform: translateY(-2px); color: inherit; }
.contact-channel__icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
}
.contact-channel__icon--wa { background: #25D366; }
.contact-channel__label {
    color: var(--color-default-two);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-channel__value {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    word-break: break-word;
    line-height: 1.3;
    margin-bottom: 4px;
}
.contact-channel__note {
    color: var(--color-default-two);
    font-size: 12.5px;
    line-height: 1.4;
}

.contact-aside {
    background: var(--color-sec-bg);
    border: 1px solid #e6e8ef;
    padding: 22px 24px;
    border-radius: 2px;
    margin-top: 14px;
}
.contact-aside__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid #e6e8ef;
}
.contact-aside__row:first-child { padding-top: 0; }
.contact-aside__row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-aside__label {
    color: var(--color-default-two);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    flex-shrink: 0;
}
.contact-aside__value {
    color: var(--color-heading);
    font-size: 14.5px;
    font-weight: 500;
    text-align: right;
}
.contact-social {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    gap: 10px;
}
.contact-social a {
    width: 38px; height: 38px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: background .18s ease, color .18s ease;
}
.contact-social a:hover { background: var(--color-primary); color: #fff; }

.contact-form {
    background: transparent;
    border: none;
    padding: 0;
}
.contact-form__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0 0 6px;
}
.contact-form__sub {
    color: var(--color-default-two);
    font-size: 14.5px;
    margin-bottom: 24px;
}

.contact-location__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #e6e8ef;
    padding: 32px 36px;
    border-radius: 2px;
}
.contact-location__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 16px;
    color: var(--color-default-two);
    font-size: 14px;
}
.contact-location__meta span { display: inline-flex; align-items: center; gap: 6px; }
.contact-location__meta svg { color: var(--color-primary); }

/* Apply page sidebar */
.apply-side { position: sticky; top: 20px; }
.apply-side__card {
    background: #fff;
    border: 1px solid #e6e8ef;
    border-top: 4px solid var(--color-primary);
    padding: 28px;
    border-radius: 2px;
    margin-bottom: 18px;
}
.apply-side__title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0 0 18px;
}
.apply-side__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}
.apply-side__steps li {
    display: flex;
    gap: 14px;
    padding: 10px 0;
    border-top: 1px solid #eef0f4;
    align-items: flex-start;
}
.apply-side__steps li:first-child { border-top: none; padding-top: 0; }
.apply-side__num {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--ub-gold);
    letter-spacing: 0.04em;
    width: 30px;
    padding-top: 2px;
}
.apply-side__steps strong {
    display: block;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 15px;
    margin-bottom: 3px;
}
.apply-side__steps span {
    color: var(--color-default-two);
    font-size: 13.5px;
    line-height: 1.5;
}
.apply-side__docs {
    background: var(--color-sec-bg);
    border: 1px solid #e6e8ef;
    padding: 22px 24px;
    border-radius: 2px;
    margin-bottom: 18px;
}
.apply-side__docs h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-heading);
    margin: 0 0 12px;
}
.apply-side__docs ul { list-style: none; padding: 0; margin: 0; }
.apply-side__docs li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    color: var(--color-default);
    font-size: 14px;
}
.apply-side__docs li svg { color: var(--color-secondary); flex-shrink: 0; margin-top: 4px; }
.apply-side__help {
    background: var(--color-primary);
    color: #fff;
    padding: 22px 24px;
    border-radius: 2px;
}
.apply-side__help p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0 0 12px;
}
.apply-side__help a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.apply-side__help a:hover { color: var(--ub-gold); }
.apply-side__help svg { color: var(--ub-gold); }

/* Gallery */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}
.gallery-filter__btn {
    padding: 8px 16px;
    background: var(--color-sec-bg);
    border: 1px solid #e6e8ef;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-default-two);
    cursor: pointer;
    transition: all .18s ease;
}
.gallery-filter__btn:hover { color: var(--color-primary); border-color: var(--color-primary); }
.gallery-filter__btn.is-active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 2px;
    background: var(--color-sec-bg);
    text-decoration: none;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__cat {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(11,30,63,0.85);
    color: var(--ub-gold);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}
.gallery-item__caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 14px 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    background: linear-gradient(180deg, transparent 0%, rgba(11,30,63,0.85) 100%);
    transform: translateY(110%);
    transition: transform .3s ease;
}
.gallery-item:hover .gallery-item__caption { transform: translateY(0); }

@media (max-width: 991px) {
    .contact-channels__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .apply-side { position: static; }
}
@media (max-width: 768px) {
    .contact-channels__grid { grid-template-columns: 1fr; }
    .contact-location__inner { padding: 22px; flex-direction: column; align-items: flex-start; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 991px) {
    .corp-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .corp-stats__card:nth-child(2) { border-right: none; }
    .corp-stats__card:nth-child(-n+2) { border-bottom: 1px solid #eef0f4; }
    .corp-mission__pillars { grid-template-columns: 1fr; }
    .corp-services__grid { grid-template-columns: repeat(2, 1fr); }
    .campus-costs__grid { grid-template-columns: repeat(2, 1fr); }
    .campus-districts__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .corp-hero { padding: 80px 0 60px; }
    .corp-services__grid { grid-template-columns: 1fr; }
    .campus-costs__grid { grid-template-columns: 1fr; }
    .corp-timeline__list li { grid-template-columns: 90px 1fr; gap: 16px; padding: 16px 0; }
    .corp-timeline__year { font-size: 24px; padding-right: 10px; }
    .corp-timeline__list h3 { font-size: 17px; }
    .corp-timeline__list p { font-size: 14px; }
}

/* ==========================================================================
   Faculty page — modüler şablon
   ========================================================================== */
.faculty-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 100px 0 90px;
    isolation: isolate;
}
.faculty-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: -2;
}
.faculty-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(95deg, rgba(8,22,50,0.92) 0%, rgba(11,30,63,0.78) 45%, rgba(15,43,91,0.5) 100%),
        linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}
.faculty-hero__inner {
    position: relative;
    max-width: 820px;
}
.faculty-hero__crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.faculty-hero__crumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.faculty-hero__crumb a:hover { color: var(--ub-gold); }
.faculty-hero__crumb .is-current { color: var(--ub-gold); }
.faculty-hero__group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ub-gold);
    font-family: var(--font-heading);
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
.faculty-hero__group::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--ub-gold);
}
.faculty-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 600;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}
.faculty-hero__tagline {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin-bottom: 28px;
}
.faculty-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.faculty-hero .thm-btn--ghost { background: #fff; border: 1.5px solid #fff; color: var(--color-primary); }
.faculty-hero .thm-btn--ghost:hover { background: var(--ub-gold); border-color: var(--ub-gold); color: var(--color-heading); }

/* Trust strip */
.faculty-trust {
    background: #fff;
    border-bottom: 1px solid #eef0f4;
}
.faculty-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.faculty-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid #eef0f4;
}
.faculty-trust__item:last-child { border-right: none; }
.faculty-trust__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center; justify-content: center;
    background: var(--color-pink);
    color: var(--color-primary);
    border-radius: 50%;
}
.faculty-trust__item strong {
    display: block;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}
.faculty-trust__item small {
    color: var(--color-default-two);
    font-size: 12.5px;
}

/* Stat cards */
.faculty-stats {
    background: var(--color-sec-bg);
    padding: 36px 0;
    border-bottom: 1px solid #e4e7ee;
}
.faculty-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.faculty-stats__card {
    background: #fff;
    border: 1px solid #e6e8ef;
    border-left: 3px solid var(--color-secondary);
    padding: 22px 24px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.faculty-stats__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -16px rgba(11,30,63,0.18);
}
.faculty-stats__icon {
    color: var(--color-primary);
    margin-bottom: 8px;
}
.faculty-stats__num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1.1;
}
.faculty-stats__num--sm { font-size: 18px; line-height: 1.4; }
.faculty-stats__label {
    color: var(--color-default-two);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Body — zengin tipografi */
.faculty-content { padding-top: 70px !important; padding-bottom: 70px !important; }
.faculty-body {
    color: var(--color-default);
    font-size: 16px;
    line-height: 1.85;
}
.faculty-body > p:first-of-type {
    font-size: 19px;
    line-height: 1.65;
    color: var(--color-heading);
    border-left: 3px solid var(--color-secondary);
    padding: 6px 0 6px 22px;
    margin-bottom: 28px;
}
.faculty-body h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 48px 0 16px;
    padding-top: 8px;
    position: relative;
}
.faculty-body h2::before {
    content: '';
    display: block;
    width: 36px; height: 2px;
    background: var(--ub-gold);
    margin-bottom: 16px;
}
.faculty-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 28px 0 10px;
}
.faculty-body p { margin-bottom: 16px; }
.faculty-body strong { color: var(--color-heading); font-weight: 600; }
.faculty-body em { color: var(--color-primary); font-style: italic; }
.faculty-body a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.faculty-body a:hover { color: var(--color-secondary); }
.faculty-body ul,
.faculty-body ol {
    margin: 18px 0 22px;
    padding-left: 0;
    list-style: none;
    counter-reset: ub-counter;
}
.faculty-body ul li,
.faculty-body ol li {
    position: relative;
    padding: 6px 0 6px 36px;
    margin-bottom: 4px;
}
.faculty-body ul li::before {
    content: '';
    position: absolute;
    left: 4px; top: 16px;
    width: 14px; height: 2px;
    background: var(--color-secondary);
}
.faculty-body ol li {
    counter-increment: ub-counter;
}
.faculty-body ol li::before {
    content: counter(ub-counter, decimal-leading-zero);
    position: absolute;
    left: 0; top: 4px;
    width: 28px;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
}
.faculty-body blockquote {
    background: var(--color-sec-bg);
    border-left: 4px solid var(--color-primary);
    padding: 18px 22px;
    margin: 22px 0;
    font-style: italic;
    color: var(--color-heading);
}

/* FAQ accordion */
.faculty-faq {
    margin-top: 56px;
    background: var(--color-sec-bg);
    padding: 32px;
    border-radius: 4px;
    border: 1px solid #e6e8ef;
}
.faculty-faq__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ub-gold);
    display: inline-block;
}
.faculty-faq__list { display: flex; flex-direction: column; gap: 0; }
.faculty-faq__item {
    background: #fff;
    border: 1px solid #e6e8ef;
    margin-bottom: 10px;
    border-radius: 2px;
    overflow: hidden;
}
.faculty-faq__q {
    cursor: pointer;
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    list-style: none;
    transition: color .18s ease, background .18s ease;
}
.faculty-faq__q::-webkit-details-marker { display: none; }
.faculty-faq__q:hover { color: var(--color-primary); background: var(--color-pink); }
.faculty-faq__chevron {
    color: var(--color-secondary);
    transition: transform .25s ease;
    flex-shrink: 0;
}
.faculty-faq__item[open] .faculty-faq__chevron { transform: rotate(180deg); }
.faculty-faq__item[open] .faculty-faq__q { color: var(--color-primary); border-bottom: 1px solid #eef0f4; }
.faculty-faq__a {
    padding: 16px 20px 20px;
    color: var(--color-default-two);
    line-height: 1.75;
    font-size: 15px;
}
.faculty-faq__a p { margin-bottom: 10px; }
.faculty-faq__a p:last-child { margin-bottom: 0; }

/* Sidebar */
.faculty-aside { position: sticky; top: 20px; }
.faculty-aside__card {
    background: #fff;
    border: 1px solid #e6e8ef;
    border-top: 4px solid var(--color-primary);
    padding: 28px;
    border-radius: 2px;
    margin-bottom: 18px;
}
.faculty-aside__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef0f4;
}
.faculty-aside__list { list-style: none; padding: 0; margin: 0 0 22px; }
.faculty-aside__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #eef0f4;
    font-size: 14px;
}
.faculty-aside__list li:last-child { border-bottom: none; }
.faculty-aside__list span { color: var(--color-default-two); }
.faculty-aside__list strong { color: var(--color-heading); font-weight: 600; }
.faculty-aside__fee { color: var(--color-secondary) !important; font-size: 19px !important; font-family: var(--font-heading); }
.faculty-aside__cta {
    width: 100%;
    background: var(--color-secondary) !important;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}
.faculty-aside__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px;
}
.faculty-aside__call:hover { color: var(--color-secondary); }
.faculty-aside__contact {
    background: var(--color-sec-bg);
    border: 1px solid #e6e8ef;
    padding: 20px;
    border-radius: 2px;
}
.faculty-aside__contact-eyebrow {
    color: var(--color-default-two);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.faculty-aside__contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
}
.faculty-aside__contact-link:hover { color: var(--color-secondary); }

/* Steps */
.faculty-steps__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
}
.faculty-steps__grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--ub-gold) 15%, var(--ub-gold) 85%, transparent 100%);
    z-index: 0;
}
@media (max-width: 991px) {
    .faculty-steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .faculty-steps__grid::before { display: none; }
}
@media (max-width: 575px) {
    .faculty-steps__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .faculty-steps__grid::before { display: none; }
}
.faculty-steps__item {
    background: #fff;
    border: 1px solid #e6e8ef;
    padding: 24px 20px 22px;
    border-radius: 2px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform .2s ease, box-shadow .2s ease;
}
@media (max-width: 575px) {
    .faculty-steps__item {
        padding: 22px 20px 20px;
    }
    .faculty-steps__item .faculty-steps__num {
        width: 42px; height: 42px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    .faculty-steps__item .faculty-steps__title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .faculty-steps__item .faculty-steps__desc {
        font-size: 13.5px;
        line-height: 1.55;
    }
}
.faculty-steps__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -18px rgba(11,30,63,0.20);
    border-color: var(--color-primary);
}
.faculty-steps__num {
    width: 48px; height: 48px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 16px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px var(--color-primary);
}
.faculty-steps__item:hover .faculty-steps__num { background: var(--color-secondary); box-shadow: 0 0 0 1px var(--color-secondary); }
.faculty-steps__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 8px;
    line-height: 1.3;
}
.faculty-steps__desc {
    color: var(--color-default-two);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

/* Bottom CTA — editorial, tek renk */
.faculty-cta {
    background: #0B1E3F;
    color: #fff;
    padding: 64px 0 80px;
    margin-bottom: 60px;
    position: relative;
}
.faculty-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.45) 50%, transparent);
}
.faculty-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 36px;
}
.faculty-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.55);
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}
.faculty-cta__eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--ub-gold);
}
.faculty-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 14px;
    max-width: 640px;
    letter-spacing: -0.005em;
}
.faculty-cta__desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 540px;
}
.faculty-cta__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.faculty-cta .thm-btn {
    background: #fff;
    color: var(--color-primary);
    border: 1.5px solid #fff;
    padding: 14px 28px;
}
.faculty-cta .thm-btn:hover { background: var(--ub-gold); border-color: var(--ub-gold); color: var(--color-heading); }
.faculty-cta .thm-btn--ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
}
.faculty-cta .thm-btn--ghost:hover { background: transparent; border-color: var(--ub-gold); color: var(--ub-gold); }
@media (max-width: 768px) {
    .faculty-cta { padding: 48px 0 56px; margin-bottom: 40px; }
    .faculty-cta__inner { grid-template-columns: 1fr; gap: 24px; }
    .faculty-cta__actions { justify-content: flex-start; }
}

/* Responsive */
@media (max-width: 991px) {
    .faculty-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .faculty-trust__item:nth-child(2n) { border-right: none; }
    .faculty-trust__item:nth-child(-n+2) { border-bottom: 1px solid #eef0f4; }
    .faculty-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .faculty-steps__grid { grid-template-columns: repeat(2, 1fr); }
    .faculty-steps__grid::before { display: none; }
    .faculty-aside { position: static; }
}
@media (max-width: 575px) {
    .faculty-hero { padding: 70px 0 60px; }
    .faculty-trust__grid { grid-template-columns: 1fr; }
    .faculty-trust__item { border-right: none; border-bottom: 1px solid #eef0f4; }
    .faculty-stats__grid { grid-template-columns: 1fr; }
    .faculty-steps__grid { grid-template-columns: 1fr; }
    .faculty-body h2 { font-size: 24px; }
    .faculty-faq { padding: 22px; }
    .faculty-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Home Slider (Swiper) — editorial UB
   ========================================================================== */
.home-slider {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
    margin: 0;
    margin-top: -3px;
    display: block;
    line-height: 0;
}
.home-slider > * { line-height: normal; }
.home-slider .swiper {
    width: 100%;
    height: clamp(560px, 78vh, 720px);
    display: block;
}
.home-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Ken Burns zoom — aktif slaytta arka plan yavaşça yakınlaşır */
.home-slider__bg {
    position: absolute;
    inset: -1px;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 8s ease-out;
    z-index: 0;
    will-change: transform;
}
.home-slider .swiper-slide-active .home-slider__bg {
    transform: scale(1.18);
}

/* Tint overlay'leri — yazı okunabilirliği için sol tarafta güçlü */
.home-slider .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8,22,50,0.88) 0%, rgba(11,30,63,0.7) 35%, rgba(11,30,63,0.45) 65%, rgba(15,43,91,0.3) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 35%, transparent 60%, rgba(0,0,0,0.45) 100%);
}
.home-slider .swiper-slide[data-tint="crimson"]::before {
    background:
        linear-gradient(90deg, rgba(74,12,15,0.92) 0%, rgba(122,20,25,0.75) 35%, rgba(165,31,36,0.45) 65%, rgba(165,31,36,0.3) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 35%, transparent 60%, rgba(0,0,0,0.45) 100%);
}
.home-slider .swiper-slide[data-tint="dark"]::before {
    background:
        linear-gradient(90deg, rgba(4,12,30,0.95) 0%, rgba(11,30,63,0.82) 35%, rgba(20,15,46,0.6) 65%, rgba(15,43,91,0.4) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.55) 100%);
}

/* Text bölgesi altında ek koyu radial — özellikle parlak fotoğraflarda */
.home-slider__inner {
    position: relative;
}
.home-slider__inner::before {
    content: '';
    position: absolute;
    inset: -40px -120px -40px -200px;
    background: radial-gradient(ellipse at 30% 50%, rgba(8,22,50,0.55) 0%, rgba(8,22,50,0.25) 45%, transparent 75%);
    z-index: -1;
    pointer-events: none;
}
.home-slider .swiper-slide[data-tint="crimson"] .home-slider__inner::before {
    background: radial-gradient(ellipse at 30% 50%, rgba(74,12,15,0.55) 0%, rgba(74,12,15,0.25) 45%, transparent 75%);
}

/* Hafif tane dokusu */
.home-slider .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
    pointer-events: none;
    mix-blend-mode: overlay;
}

.home-slider .swiper-slide .container {
    position: relative;
    z-index: 3;
}
.home-slider__inner { max-width: 780px; padding: 80px 0 110px; }

/* İçerik stagger animasyonu — slide aktifleşince */
.home-slider__eyebrow,
.home-slider__title,
.home-slider__subtitle,
.home-slider__cta {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}
.home-slider .swiper-slide-active .home-slider__eyebrow {
    opacity: 1; transform: translateY(0); transition-delay: .15s;
}
.home-slider .swiper-slide-active .home-slider__title {
    opacity: 1; transform: translateY(0); transition-delay: .3s;
}
.home-slider .swiper-slide-active .home-slider__subtitle {
    opacity: 1; transform: translateY(0); transition-delay: .45s;
}
.home-slider .swiper-slide-active .home-slider__cta {
    opacity: 1; transform: translateY(0); transition-delay: .6s;
}
@media (prefers-reduced-motion: reduce) {
    .home-slider__bg { transition: none !important; transform: scale(1.05) !important; }
    .home-slider__eyebrow, .home-slider__title,
    .home-slider__subtitle, .home-slider__cta {
        opacity: 1 !important; transform: none !important; transition: none !important;
    }
}

/* Eyebrow — line accent + uppercase */
.home-slider__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ub-gold);
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 22px;
    padding: 0;
    border: none;
}
.home-slider__eyebrow-mark {
    width: 36px; height: 1px;
    background: var(--ub-gold);
    display: inline-block;
    position: relative;
}
.home-slider__eyebrow-mark::after {
    content: '';
    position: absolute;
    right: -4px; top: -3px;
    width: 7px; height: 7px;
    background: var(--ub-gold);
    border-radius: 50%;
}

.home-slider__title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.4vw, 68px);
    line-height: 1.06;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.28);
    letter-spacing: -0.01em;
}
.home-slider__subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    max-width: 600px;
}
.home-slider__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.home-slider .thm-btn {
    padding: 15px 32px;
    box-shadow: 0 18px 36px -16px rgba(0,0,0,0.4);
}
.home-slider .thm-btn--ghost {
    background: #fff;
    border: 1.5px solid #fff;
    color: var(--color-primary);
}
.home-slider .thm-btn--ghost:hover {
    background: var(--ub-gold);
    border-color: var(--ub-gold);
    color: var(--color-heading);
}

/* Sol kenar dik etiket */
.home-slider__rail {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    z-index: 4;
    pointer-events: none;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}
.home-slider__rail-text {
    display: inline-block;
    padding: 0 14px;
    position: relative;
}
.home-slider__rail-text::before,
.home-slider__rail-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px; height: 1px;
    background: rgba(255,255,255,0.25);
}
.home-slider__rail-text::before { right: 100%; }
.home-slider__rail-text::after  { left: 100%; }

/* Alt kontrol şeridi: prev · counter · next */
.home-slider__controls {
    position: absolute;
    z-index: 5;
    right: clamp(20px, 4vw, 60px);
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
}
.home-slider__arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    padding: 10px 6px;
    color: #fff;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
    font: inherit;
}
.home-slider__arrow:hover {
    color: var(--ub-gold);
    transform: translateY(-1px);
}
.home-slider__arrow svg { width: 22px; height: 22px; }
.home-slider__arrow--prev svg { transform: rotate(180deg); }
.home-slider__arrow-line {
    width: 28px; height: 1px;
    background: currentColor;
    opacity: 0.6;
    transition: width .2s ease, opacity .2s ease;
}
.home-slider__arrow:hover .home-slider__arrow-line { width: 40px; opacity: 1; }
.home-slider__arrow--prev .home-slider__arrow-line { order: 1; }

/* Counter */
.home-slider__counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
    min-width: 96px;
    justify-content: center;
}
.home-slider__counter-current {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}
.home-slider__counter-divider {
    width: 36px; height: 1px;
    background: var(--ub-gold);
    transform: rotate(-22deg);
    transform-origin: center;
}
.home-slider__counter-total {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
}

/* Pagination — alt orta, ince çubuklar */
.home-slider .swiper-pagination {
    bottom: 32px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    z-index: 4;
    display: flex;
    gap: 8px;
    pointer-events: auto;
}
.home-slider .swiper-pagination-bullet {
    width: 28px;
    height: 3px;
    border-radius: 0;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    margin: 0 !important;
    transition: width .35s ease, background .35s ease;
    cursor: pointer;
}
.home-slider .swiper-pagination-bullet-active {
    background: var(--ub-gold);
    width: 60px;
}

/* Autoplay progress bar */
.home-slider__progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ub-gold) 0%, #e6c468 100%);
    width: 0;
    z-index: 5;
    transition: width .1s linear;
    box-shadow: 0 0 12px rgba(201,162,39,0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .home-slider__rail { left: 14px; font-size: 10px; letter-spacing: 0.3em; }
    .home-slider__rail-text::before,
    .home-slider__rail-text::after { width: 18px; }
    .home-slider__controls { gap: 12px; bottom: 26px; }
    .home-slider__arrow-line { width: 18px; }
    .home-slider__counter-current { font-size: 24px; }
    .home-slider__counter { font-size: 14px; min-width: 76px; gap: 6px; }
    .home-slider__counter-divider { width: 24px; }
}
@media (max-width: 768px) {
    .home-slider .swiper { height: 540px; }
    .home-slider__inner { padding: 60px 0 110px; }
    .home-slider__title { font-size: 32px; line-height: 1.12; }
    .home-slider__subtitle { font-size: 15px; }
    .home-slider__rail { display: none; }
    .home-slider__arrow-line { display: none; }
    .home-slider__arrow svg { width: 18px; height: 18px; }
    .home-slider .swiper-pagination-bullet { width: 22px; }
    .home-slider .swiper-pagination-bullet-active { width: 44px; }
}
@media (max-width: 480px) {
    .home-slider .thm-btn { padding: 12px 22px; font-size: 13px; }
    .home-slider__cta { gap: 10px; }
}

/* ------- Section headings ------- */
.section-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.section-head .sub-title { display: block; margin-bottom: 12px; }
.section-head .title { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 12px; }
.section-head p { color: var(--color-default-two); }

/* ------- "Why us" features ------- */
.why-feature {
    text-align: center;
    padding: 28px 20px;
}
.why-feature__icon {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: var(--color-sec-bg);
    color: var(--color-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 44px;
    margin-bottom: 22px;
}
.why-feature__icon svg { width: 44px; height: 44px; }
.why-feature__title { font-family: var(--font-heading); font-size: 22px; margin-bottom: 8px; color: var(--color-heading); }
.why-feature__desc  { color: var(--color-default-two); }

/* ------- Misc clean-ups ------- */
a { transition: color .2s ease; }
a:hover { color: var(--color-secondary); }
img { max-width: 100%; height: auto; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* Hide preloader (dev — often annoying) */
#preloader { display: none !important; }

/* ==========================================================================
   Stats Strip
   ========================================================================== */
.stats-strip {
    background: var(--color-primary);
    color: #fff;
    padding: 0;
}
.stats-strip__row {
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stats-strip__item {
    text-align: center;
    padding: 32px 12px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__num {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.5vw, 44px);
    line-height: 1;
    color: var(--ub-gold);
    margin-bottom: 6px;
    font-weight: 600;
}
.stats-strip__label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}
@media (max-width: 767px) {
    .stats-strip__item { padding: 20px 8px; }
    .stats-strip__item:nth-child(2n) { border-right: none; }
    .stats-strip__item { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ==========================================================================
   Recognition cards
   ========================================================================== */
.recog-card {
    background: #fff;
    border: 1px solid #e6e8ef;
    border-radius: 4px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.recog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 43, 91, 0.1);
    border-color: var(--color-primary);
}
.recog-card__badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 2px;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}
.recog-card__title {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-size: 20px;
    margin-bottom: 8px;
}
.recog-card__desc {
    color: var(--color-default-two);
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

/* ==========================================================================
   Process steps
   ========================================================================== */
.process-grid { counter-reset: step; }
.process-step {
    position: relative;
    padding: 30px 24px;
    background: #fff;
    border: 1px solid #e6e8ef;
    border-radius: 4px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 43, 91, 0.1);
    border-color: var(--color-primary);
}
.process-step__num {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.18;
    font-weight: 700;
    margin-bottom: 16px;
}
.process-step__title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-heading);
    margin-bottom: 8px;
}
.process-step__desc {
    color: var(--color-default-two);
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: #fff;
    border: 1px solid #e6e8ef;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--color-primary); }
.faq-item__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--color-heading);
    list-style: none;
    user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__toggle {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform .25s ease;
}
.faq-item[open] .faq-item__toggle { transform: rotate(45deg); }
.faq-item__a {
    padding: 0 22px 20px;
    color: var(--color-default-two);
    line-height: 1.65;
    border-top: 1px solid #eef0f4;
    padding-top: 18px;
}

/* ==========================================================================
   Inline SVG icon sizing & color inheritance
   ========================================================================== */
svg { vertical-align: middle; }
/* Icons within colored contexts inherit currentColor */
.why-feature__icon svg,
.group-card__icon svg { color: var(--color-primary); }
.faculty-card__meta svg,
.faculty-card__cta svg { color: inherit; }
.alert-success svg { color: #2E7D32; margin-right: 6px; }
.alert-error svg   { color: var(--color-secondary); margin-right: 6px; }
.ub-footer__social svg { width: 16px; height: 16px; color: #fff; }

/* Program seviye rozetleri (fiyat-listesi tablosu) */
.fee-level {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}
.fee-level--bachelor   { background: #DBEAFE; color: #1E40AF; }
.fee-level--master     { background: #FEF3C7; color: #92400E; }
.fee-level--phd        { background: #EDE9FE; color: #5B21B6; }
.fee-level--integrated { background: #FEE2E2; color: #991B1B; }
.fee-level--vocational { background: #D1FAE5; color: #065F46; }

/* === Kampüs harita === */
html, body { overflow-x: hidden; }
.campus-map { overflow: hidden; }
.campus-map__lead { color: var(--color-default-two); max-width: 720px; margin: 12px auto 0; font-size: 16px; line-height: 1.6; }
.campus-map__filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 28px 0 22px;
}
.campus-map__chip {
    background: #fff;
    border: 1px solid var(--adm-border, #E8E9EE);
    color: var(--color-heading);
    padding: 9px 18px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .15s ease;
}
.campus-map__chip:hover { border-color: var(--color-primary); }
.campus-map__chip.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.campus-map__dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
}
.campus-map__dot--rectorate { background: #A51F24; }
.campus-map__dot--faculty   { background: #0F2B5B; }
.campus-map__dot--dorm      { background: #C9A227; }
.campus-map__dot--city      { background: #475569; }
.campus-map__chip.is-active .campus-map__dot { box-shadow: 0 0 0 2px #fff; }

.campus-map__canvas {
    height: 540px;
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
    border: 1px solid var(--adm-border, #E8E9EE);
    overflow: hidden;
    background: #f1f4f9;
    position: relative;
}
.campus-map__canvas canvas { max-width: 100%; }
@media (max-width: 575px) { .campus-map__canvas { height: 420px; } }

/* MapLibre marker — ikonlu daire */
.ub-marker {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.ub-marker svg { width: 16px; height: 16px; color: #fff; pointer-events: none; }
.ub-marker:hover { transform: scale(1.18); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.ub-marker--rectorate { width: 38px; height: 38px; z-index: 5; }
/* Adayın başvurduğu fakülte — vurgulu + "Fakülteniz" rozeti */
.ub-marker--highlight {
    width: 48px !important; height: 48px !important;
    border: 4px solid #C9A227 !important;
    box-shadow: 0 0 0 8px rgba(201,162,39,0.25), 0 8px 24px rgba(0,0,0,0.4) !important;
    z-index: 100 !important;
    animation: ub-marker-pulse 2.5s ease-in-out infinite;
}
.ub-marker--highlight svg { width: 22px; height: 22px; }
.ub-marker--highlight::after {
    content: 'Fakülteniz';
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #C9A227;
    color: #0B1E3F;
    padding: 4px 10px;
    border-radius: 99px;
    font-family: 'Tiempos Headline', 'EB Garamond', Georgia, serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    pointer-events: none;
}
.ub-marker--highlight::before {
    content: '';
    position: absolute;
    left: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #C9A227;
    pointer-events: none;
}
@keyframes ub-marker-pulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(201,162,39,0.25), 0 8px 24px rgba(0,0,0,0.4); }
    50%      { box-shadow: 0 0 0 14px rgba(201,162,39,0.10), 0 8px 24px rgba(0,0,0,0.4); }
}
@media (max-width: 575px) {
    .ub-marker--highlight::after { font-size: 10.5px; padding: 3px 8px; }
}
.ub-marker--rectorate svg { width: 19px; height: 19px; }

/* Popup — kompakt, harita içine sığacak boyut */
.ub-popup { min-width: 180px; max-width: 240px; padding: 2px; }
.ub-popup__cat {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 2px;
}
.ub-popup strong {
    display: block;
    font-family: 'Tiempos Headline', serif;
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-heading);
    margin-bottom: 2px;
}
.ub-popup small { display: block; color: var(--color-default-two); font-size: 11px; line-height: 1.4; }
.ub-popup__nearby {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eef0f4;
    display: grid;
    gap: 6px;
}
.ub-popup__group { font-size: 11px; }
.ub-popup__head {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-default-two);
    margin-bottom: 3px;
}
.ub-popup__group ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.ub-popup__group li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 6px;
    color: var(--color-heading);
    line-height: 1.35;
}
.ub-popup__group li em {
    font-style: normal;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 10px;
    white-space: nowrap;
}
.maplibregl-popup-content {
    padding: 11px 13px 12px;
    border-radius: 4px;
    max-width: 240px !important;
    max-height: 360px;
    overflow-y: auto;
    box-shadow: 0 6px 22px rgba(11,30,63,0.18);
}
.maplibregl-popup-close-button { font-size: 18px; padding: 2px 6px; right: 2px; top: 2px; }
@media (max-width: 575px) {
    .maplibregl-popup-content { max-width: 200px !important; max-height: 280px; padding: 10px 12px; }
    .ub-popup strong { font-size: 13px; }
}

/* === Süreç şeması === */
.process-flow__list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.process-flow__list::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15,43,91,0.3) 10%, rgba(15,43,91,0.3) 90%, transparent);
    z-index: 0;
}
.process-flow__step {
    position: relative;
    text-align: center;
    padding: 0 16px;
    z-index: 1;
}
.process-flow__num {
    font-family: 'Tiempos Headline', 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ub-gold);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    display: block;
}
.process-flow__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: #fff;
    border: 1px solid var(--adm-border, #E8E9EE);
    color: var(--color-primary);
    border-radius: 50%;
    margin-bottom: 18px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.process-flow__step:hover .process-flow__icon {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.process-flow__title {
    font-family: 'Tiempos Headline', 'EB Garamond', serif;
    font-size: 17px;
    color: var(--color-heading);
    margin: 0 0 6px;
    font-weight: 600;
}
.process-flow__desc {
    font-size: 13px;
    color: var(--color-default-two);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 991px) {
    .process-flow__list { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .process-flow__list::before { display: none; }
}
@media (max-width: 575px) {
    .process-flow__list { grid-template-columns: 1fr; gap: 24px; }
    .process-flow__step { display: grid; grid-template-columns: 64px 1fr; gap: 16px; text-align: left; align-items: start; padding: 0; }
    .process-flow__icon { margin-bottom: 0; grid-row: span 3; }
    .process-flow__num { margin-bottom: 4px; }
}

/* === Veli alanı === */
.parents-area__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.parents-area__head .title { font-size: clamp(28px, 3.4vw, 40px); margin: 8px 0 14px; }
.parents-area__lead {
    color: var(--color-default-two);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}
.parents-area__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.parents-area__card {
    background: #fff;
    border: 1px solid var(--adm-border, #E8E9EE);
    padding: 28px 24px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.parents-area__card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(15,43,91,0.08);
    transform: translateY(-2px);
}
.parents-area__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    background: var(--color-pink);
    color: var(--color-primary);
    border-radius: 50%;
    margin-bottom: 18px;
}
.parents-area__h3 {
    font-family: 'Tiempos Headline', 'EB Garamond', serif;
    font-size: 18px;
    color: var(--color-heading);
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.3;
}
.parents-area__p {
    color: var(--color-default-two);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 991px) { .parents-area__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .parents-area__grid { grid-template-columns: 1fr; gap: 14px; } }

/* === Hızlı ön başvuru şeridi === */
.quick-apply {
    background: linear-gradient(120deg, #0B1E3F 0%, #102A5C 60%, #0B1E3F 100%);
    color: #fff;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.quick-apply::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.6), transparent);
}
.quick-apply__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.quick-apply__eyebrow {
    color: var(--ub-gold);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}
.quick-apply__title {
    font-family: 'Tiempos Headline', 'EB Garamond', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.18;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 600;
    letter-spacing: -0.012em;
}
.quick-apply__lead {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 460px;
}
.quick-apply__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    align-items: end;
}
.quick-apply__field { display: flex; flex-direction: column; }
.quick-apply__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
}
.quick-apply__input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 13px 14px;
    border-radius: 0;
    font-size: 15px;
    width: 100%;
    transition: border-color .15s ease, background .15s ease;
}
.quick-apply__input::placeholder { color: rgba(255,255,255,0.5); }
.quick-apply__input:focus {
    outline: none;
    border-color: var(--ub-gold);
    background: rgba(255,255,255,0.12);
}
.quick-apply__btn {
    grid-column: span 2;
    background: var(--ub-gold);
    color: #0B1E3F;
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .15s ease;
}
.quick-apply__btn:hover { background: #d6b239; color: #0B1E3F; }
.quick-apply__note {
    grid-column: span 2;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 4px;
}
@media (max-width: 991px) {
    .quick-apply__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 575px) {
    .quick-apply { padding: 40px 0; }
    .quick-apply__form { grid-template-columns: 1fr; }
    .quick-apply__btn { grid-column: span 1; }
    .quick-apply__note { grid-column: span 1; }
}

/* ==========================================================================
   Home video hero — slider yerine tek YouTube arka plan videosu
   ========================================================================== */
:root { --header-h: 150px; --mobilebar-h: 0px; }   /* JS bunları gerçek değer ile günceller */

.home-video-hero {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    max-height: 820px;
    margin-top: -3px;     /* header alt 3px navy çizgisini kapat — hiçbir boşluk kalmasın */
    background: #0B1E3F;
    color: #fff;
    isolation: isolate;
}
@media (max-width: 991px) {
    .home-video-hero { min-height: 78vh; max-height: 700px; }
}
/* --- Mobil hero kuralları (CSS sırası nedeniyle base'den SONRA gelmeli) tek yerde toplandı --- */

.home-video-hero__video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background-color: #0B1E3F;
}
.home-video-hero__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
}
.home-video-hero__media {
    z-index: 1;
}
.home-video-hero__media,
.home-video-hero__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    border: 0;
    background: #0B1E3F;
}

.home-video-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(120deg, rgba(11,30,63,0.85) 0%, rgba(11,30,63,0.55) 55%, rgba(11,30,63,0.35) 100%);
}
.home-video-hero[data-tint="crimson"] .home-video-hero__overlay {
    background: linear-gradient(120deg, rgba(122,20,25,0.85) 0%, rgba(165,31,36,0.55) 55%, rgba(165,31,36,0.35) 100%);
}
.home-video-hero[data-tint="dark"] .home-video-hero__overlay {
    background: linear-gradient(120deg, rgba(11,30,63,0.92) 0%, rgba(11,30,63,0.7) 55%, rgba(11,30,63,0.5) 100%);
}

/* Hairline at the top edge — corporate seriousness */
.home-video-hero::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: rgba(201,162,39,0.4);
    z-index: 2;
}

.home-video-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;        /* metin altta */
    min-height: inherit;
}
.home-video-hero__inner {
    max-width: 760px;
    padding: 0 0 64px;            /* sadece alt padding */
    width: 100%;
}
@media (max-width: 991px) {
    .home-video-hero__inner { padding: 0 0 48px; }
}
@media (max-width: 575px) {
    /* Sabit mobil değerler — JS ölçüm dalgalanmasıyla kaymayı önler */
    :root {
        --header-h: 132px;
        --mobilebar-h: 76px;
    }
    .home-video-hero {
        height: calc(100vh - var(--header-h) - var(--mobilebar-h));
        height: calc(100svh - var(--header-h) - var(--mobilebar-h));
        min-height: 0;
        max-height: none;
        margin-top: -12px;
    }
    .home-video-hero .container { align-items: center; }    /* mobilde dikey ortalama */
    .home-video-hero__inner { padding: 0; }
    .home-video-hero__title  { font-size: clamp(28px, 7.5vw, 38px); line-height: 1.42; margin-bottom: 22px; }
    .home-video-hero__subtitle { font-size: 14px; line-height: 1.6; }
    /* Mobilde de video oynar — poster ilk frame fallback olarak kalır */
    .home-video-hero__video {
        background-image: url('/assets/video/home-hero-poster.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* Oxford-style minimal hero typography:
   eyebrow gizli; tek dominant serif başlık; subtitle yumuşak italic-açılışlı body */
.home-video-hero__eyebrow,
.home-video-hero__eyebrow-mark { display: none; }

.home-video-hero__title {
    font-family: 'Tiempos Headline', 'EB Garamond', Georgia, serif;
    font-size: clamp(42px, 6.4vw, 92px);
    line-height: 1.12;
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: -0.018em;
    font-weight: 600;
    text-shadow: none;
    max-width: 980px;
    text-transform: capitalize;
}
.home-video-hero__title em {
    font-style: italic;
    color: rgba(255,255,255,0.88);
    font-weight: 500;
}

.home-video-hero__subtitle {
    font-family: 'Tiempos Headline', 'EB Garamond', Georgia, serif;
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.5;
    color: rgba(255,255,255,0.86);
    margin: 0;
    max-width: 640px;
    font-weight: 500;
    font-style: italic;
}
@media (max-width: 991px) {
    .home-video-hero__title { font-size: clamp(38px, 7vw, 60px); }
}
@media (max-width: 575px) {
    .home-video-hero__title { font-size: clamp(34px, 9vw, 48px); line-height: 1.0; letter-spacing: -0.022em; margin-bottom: 22px; }
    .home-video-hero__subtitle { font-size: 16px; line-height: 1.55; }
}

.home-video-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}
@media (max-width: 575px) {
    .home-video-hero__cta { margin-top: 22px; gap: 10px; }
    .home-video-hero__cta .thm-btn { padding: 11px 20px; font-size: 13px; }
}
.home-video-hero .thm-btn { padding: 15px 34px; }
.home-video-hero .thm-btn--ghost {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
}
.home-video-hero .thm-btn--ghost:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

/* Video gizleme: prefers-reduced-motion ve düşük data tercihi (poster yine görünür) */
@media (prefers-reduced-motion: reduce) {
    .home-video-hero__media,
    .home-video-hero__video iframe { display: none; }
    .home-video-hero { background: linear-gradient(120deg, #0B1E3F 0%, #1a3d7a 100%); }
}

/* ==========================================================================
   Aday Auth (login/signup/profil)
   ========================================================================== */
.auth-section { padding: 48px 0 64px; background: var(--color-sec-bg); min-height: 50vh; }
.auth-card {
    max-width: 540px;
    margin: 0 auto;
    background: #fff;
    padding: 28px 30px 26px;
    border: 1px solid #e6e8ef;
    border-radius: 4px;
    box-shadow: 0 10px 36px -18px rgba(11,30,63,0.14);
}
@media (max-width: 575px) {
    .auth-section { padding: 28px 0 48px; }
    .auth-card { padding: 22px 20px 20px; max-width: none; margin: 0 12px; border-radius: 3px; }
}
.auth-card__head { text-align: center; margin-bottom: 16px; }
.auth-card__icon {
    width: 52px; height: 52px;
    margin-bottom: 10px;
}
.auth-card__icon svg { width: 22px; height: 22px; }
.auth-card__title {
    font-size: 22px;
    margin: 0 0 4px;
}
.auth-card__sub { font-size: 13px; line-height: 1.5; }
.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
    border: 1px solid #e6e8ef;
    border-radius: 3px;
    overflow: hidden;
}
.auth-tab {
    flex: 1;
    text-align: center;
    padding: 9px 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--color-default-two);
    background: #f8f9fc;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.auth-tab.is-active { background: var(--color-heading); color: #fff; }
.auth-tab:hover:not(.is-active) { background: #eef0f5; color: var(--color-heading); }
.auth-form { gap: 10px; }
.auth-form__label { gap: 4px; }
.auth-form__label > span { font-size: 11.5px; letter-spacing: 0.03em; }
.auth-form input,
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
    height: 42px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    border: 1px solid #d8dce4 !important;
    background: #fff !important;
    border-radius: 2px !important;
    color: var(--color-heading) !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    width: 100% !important;
}
.auth-form input::placeholder { color: #95a0b3 !important; }
.auth-form input:focus { border-color: var(--color-primary) !important; box-shadow: 0 0 0 3px rgba(15,43,91,0.08) !important; outline: none !important; }
.auth-form__btn {
    margin-top: 4px;
    padding: 11px 22px;
    font-size: 13px;
    letter-spacing: 0.04em;
}
.auth-card__foot {
    margin-top: 16px;
    padding-top: 14px;
    font-size: 13px;
}
.auth-form__hint { display: block; margin-top: 10px; font-size: 12px; color: var(--color-default-two); line-height: 1.5; text-align: center; }
.auth-form__hint a { color: var(--color-primary); font-weight: 600; }
.auth-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--color-sec-bg); color: var(--color-primary);
    margin-bottom: 14px;
}
.auth-card__title {
    font-family: var(--font-heading);
    font-size: 26px; color: var(--color-heading);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.auth-card__sub { color: var(--color-default-two); font-size: 14px; line-height: 1.55; margin: 0; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form__label { display: flex; flex-direction: column; gap: 6px; }
.auth-form__label > span {
    font-size: 13px; font-weight: 600; color: var(--color-heading);
    text-transform: uppercase; letter-spacing: 0.04em;
}
.auth-form__label > span small { font-weight: 400; color: var(--color-default-two); text-transform: none; letter-spacing: 0; margin-left: 4px; }
.auth-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d8dce4;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
    color: var(--color-heading);
    background: #fff;
    transition: border-color .15s ease;
}
.auth-form input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(15,43,91,0.08); }
.auth-form__btn { margin-top: 8px; justify-content: center; padding: 14px 28px; }
.auth-card__foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eef0f5;
    text-align: center;
    font-size: 14px;
    color: var(--color-default-two);
}
.auth-card__foot a { color: var(--color-primary); font-weight: 600; margin-left: 6px; }
.auth-card__foot a:hover { color: var(--color-secondary); }

/* Profile sayfası */
.profile-grid { display: grid; grid-template-columns: 320px 1fr; gap: 28px; }
@media (max-width: 991px) { .profile-grid { grid-template-columns: 1fr; gap: 18px; } }
@media (max-width: 575px) {
    .profile-section { padding: 18px 16px; }
    .profile-section__head { flex-wrap: wrap; gap: 6px; }
    .profile-section__head h2 { font-size: 18px; }
    .auth-section { padding: 24px 0 48px; }
    .profile-card { padding: 22px 18px; }
    .profile-name { font-size: 18px; }
    .profile-app { padding: 14px; }
    .profile-app__head { flex-direction: column; align-items: flex-start; gap: 4px; }
    .profile-app__meta { gap: 10px; font-size: 12px; }
    /* Doc satırı mobilde kart şeklinde */
    .profile-doc {
        display: grid;
        grid-template-columns: 38px 1fr;
        gap: 8px 10px;
        padding: 14px 0;
        align-items: start;
    }
    .profile-doc__icon { width: 32px; height: 32px; }
    .profile-doc__body { grid-column: 2; min-width: 0; }
    .profile-doc__body strong { font-size: 14px; line-height: 1.3; word-break: break-word; }
    .profile-doc__body small { font-size: 12px; word-break: break-word; }
    .profile-doc__file {
        display: flex; flex-wrap: wrap; gap: 4px;
        font-size: 11.5px;
        margin-top: 6px;
        max-width: 100%;
    }
    .profile-doc__file a {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1 1 100%;
    }
    .profile-doc__file span { color: var(--color-default-two); font-size: 11px; flex-basis: 100%; }
    .profile-doc__action {
        grid-column: 2;
        display: flex; gap: 10px; align-items: center;
        justify-content: space-between;
        margin-top: 4px;
    }
    .profile-doc__status { font-size: 10.5px; padding: 4px 8px; }
    .doc-upload-btn { padding: 7px 14px; font-size: 11px; }
    /* Stage accordion mobile — header column-stack */
    .profile-stage__header {
        display: grid;
        grid-template-columns: 36px 1fr;
        gap: 8px 10px;
        padding: 12px 0;
        align-items: start;
    }
    .profile-stage__num { width: 32px; height: 32px; font-size: 12px; align-self: start; }
    .profile-stage__body {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        align-items: stretch !important;
        min-width: 0;
    }
    .profile-stage__body > div:first-child strong { font-size: 14px; line-height: 1.3; }
    .profile-stage__body > div:first-child small { font-size: 12px; line-height: 1.4; }
    .profile-stage__body > div:last-child {
        display: flex !important;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .profile-stage__pill { font-size: 10.5px; padding: 3px 8px; letter-spacing: 0.03em; }
    .profile-stage__chevron { margin-left: auto; }
    .profile-stage__detail { padding: 0 0 14px 0; font-size: 13px; }
    .profile-stage__detail li { font-size: 12.5px; }
    /* Faculty card mobil */
    .profile-faculty { padding: 12px; gap: 12px; }
    .profile-faculty__body h3 { font-size: 17px; }
    .profile-faculty__meta { gap: 10px; font-size: 12px; }
    .profile-faculty__desc { font-size: 12.5px; }
    /* Chat mobil */
    .profile-chat { padding: 10px; gap: 10px; }
    .profile-msg__bubble { max-width: 88%; padding: 8px 12px; }
    .profile-msg__bubble p { font-size: 13px; }
    .profile-chat__form { flex-direction: column; align-items: stretch; }
    .profile-chat__form button { width: 100%; }
    /* Galeri mobil */
    .profile-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
    .profile-gallery__title { font-size: 13px; padding: 8px 10px 4px; }
    .profile-gallery__item small { padding: 0 10px 10px; font-size: 11.5px; }
    /* Aktivite mobil */
    .profile-activity__icon { width: 24px; height: 24px; }
    .profile-activity__body strong { font-size: 12.5px; }
    .profile-activity__body small { font-size: 11px; }
    /* Map mobilde küçült */
    .profile-map__canvas { min-height: 320px !important; height: 320px !important; }
}
.profile-side { display: flex; flex-direction: column; gap: 16px; }
.profile-card {
    background: #fff; padding: 28px 22px; border: 1px solid #e6e8ef; border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 24px -16px rgba(11,30,63,0.12);
}
.profile-avatar {
    display: inline-flex; align-items: center; justify-content: center;
    width: 78px; height: 78px; border-radius: 50%;
    background: var(--color-primary); color: #fff;
    margin-bottom: 14px;
}
.profile-name { font-family: var(--font-heading); font-size: 20px; margin: 0 0 4px; color: var(--color-heading); }
.profile-email { font-size: 13.5px; color: var(--color-default-two); margin-bottom: 18px; word-break: break-all; }
.profile-meta { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; display: flex; flex-direction: column; gap: 8px; }
.profile-meta li { font-size: 13.5px; color: var(--color-default-two); display: flex; align-items: center; gap: 8px; }
.profile-meta svg { color: var(--color-primary); flex-shrink: 0; }
.profile-logout { width: 100%; justify-content: center; padding: 10px 18px; font-size: 13px; }
.profile-main { display: flex; flex-direction: column; gap: 18px; }
.profile-section { background: #fff; padding: 28px 26px; border: 1px solid #e6e8ef; border-radius: 4px; }
.profile-section__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 12px; flex-wrap: wrap; }
.profile-section__head h2 { font-family: var(--font-heading); font-size: 22px; margin: 0; color: var(--color-heading); }
.thm-btn--sm { padding: 8px 16px; font-size: 12px; }
.profile-empty { text-align: center; padding: 36px 12px; color: var(--color-default-two); }
.profile-empty p { margin-bottom: 16px; }
.profile-apps { display: flex; flex-direction: column; gap: 12px; }
.profile-app { padding: 18px 18px; border: 1px solid #eef0f5; border-radius: 3px; transition: border-color .15s ease; }
.profile-app:hover { border-color: var(--color-primary); }
.profile-app__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; gap: 10px; flex-wrap: wrap; }
.profile-app__head strong { font-family: var(--font-heading); font-size: 16px; color: var(--color-heading); }
.profile-app__status {
    display: inline-block; padding: 4px 10px; border-radius: 99px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.profile-app__status--new       { background: #fff8e6; color: #b08600; }
.profile-app__status--contacted { background: #e0f0ff; color: #0F2B5B; }
.profile-app__status--enrolled  { background: #e6f7ee; color: #1a7d4a; }
.profile-app__status--rejected  { background: #fde8e8; color: #a51f24; }
.profile-app__meta { display: flex; gap: 14px; font-size: 13px; color: var(--color-default-two); flex-wrap: wrap; }
.profile-app__meta svg { color: var(--color-primary); }
.profile-app__notes { margin-top: 10px; font-size: 13.5px; color: var(--color-default); padding: 10px 12px; background: var(--color-sec-bg); border-radius: 2px; }

/* Pending (onay bekliyor) */
.profile-pending {
    background: #fff;
    border: 1px solid #e6e8ef;
    border-left: 3px solid var(--color-primary);
    padding: 30px 28px;
    border-radius: 4px;
    text-align: center;
}
.profile-pending__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--color-sec-bg); color: var(--color-primary);
    margin-bottom: 14px;
}
.profile-pending h2 { font-family: var(--font-heading); font-size: 22px; color: var(--color-heading); margin: 0 0 10px; }
.profile-pending p { color: var(--color-default-two); line-height: 1.6; max-width: 540px; margin: 0 auto; }

/* Stages timeline */
.profile-stages { list-style: none; padding: 0; margin: 0; counter-reset: pstage; }
.profile-stage {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eef0f5;
}
.profile-stage:last-child { border-bottom: 0; }
.profile-stage__num {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #eef0f5; color: var(--color-default-two);
    font-family: var(--font-heading); font-size: 13px; font-weight: 700;
    flex-shrink: 0;
}
.profile-stage--completed .profile-stage__num { background: #1a7d4a; color: #fff; }
.profile-stage--active .profile-stage__num    { background: var(--color-primary); color: #fff; box-shadow: 0 0 0 4px rgba(15,43,91,0.12); }
.profile-stage__body { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.profile-stage__body strong { font-size: 15px; color: var(--color-heading); }
.profile-stage__pill {
    display: inline-block; padding: 3px 10px; border-radius: 99px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    background: #eef0f5; color: var(--color-default-two);
}
.profile-stage--completed .profile-stage__pill { background: #e6f7ee; color: #1a7d4a; }
.profile-stage--active .profile-stage__pill    { background: #fff8e6; color: #b08600; }

/* Stage accordion (genişletilebilir detaylar) — eski .profile-stage flex kuralını override */
.profile-stage {
    display: block !important;
    padding: 0 !important;
    border-bottom: 1px solid #eef0f5;
    cursor: pointer;
}
.profile-stage:last-child { border-bottom: 0; }
.profile-stage__header { display: flex; gap: 14px; align-items: center; padding: 14px 0; }
.profile-stage__chevron { color: var(--color-default-two); transition: transform 0.2s ease; }
.profile-stage.is-open .profile-stage__chevron { transform: rotate(180deg); }
.profile-stage__detail {
    display: none;
    padding: 0 0 16px 50px;
    color: var(--color-default-two);
    font-size: 13.5px;
    line-height: 1.6;
}
.profile-stage.is-open .profile-stage__detail { display: block; }
.profile-stage__detail p { margin: 0 0 4px; }
.profile-stage__detail ul { list-style: none; padding: 0; margin: 6px 0 0; }
.profile-stage__detail li {
    padding: 5px 0;
    display: flex; align-items: center; gap: 8px;
    color: var(--color-heading);
    font-size: 13px;
}
.profile-stage__detail li svg { color: #1a7d4a; flex-shrink: 0; }
@media (max-width: 575px) {
    .profile-stage__header > div:last-child { flex-direction: column; align-items: flex-end; gap: 4px; }
    .profile-stage__detail { padding-left: 18px; }
}

/* Başvurulan fakülte kartı */
.profile-faculty {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    padding: 14px;
    background: var(--color-sec-bg);
    border-radius: 3px;
}
@media (max-width: 575px) { .profile-faculty { grid-template-columns: 1fr; } }
.profile-faculty__img { aspect-ratio: 4/3; overflow: hidden; border-radius: 3px; }
.profile-faculty__img img { width: 100%; height: 100%; object-fit: cover; }
.profile-faculty__body h3 { font-family: var(--font-heading); font-size: 20px; color: var(--color-heading); margin: 0 0 4px; }
.profile-faculty__tag { color: var(--color-default-two); font-size: 13px; margin: 0 0 10px; }
.profile-faculty__meta { display: flex; flex-wrap: wrap; gap: 14px; margin: 8px 0 12px; }
.profile-faculty__meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-heading); font-weight: 500; }
.profile-faculty__meta svg { color: var(--color-primary); }
.profile-faculty__desc { font-size: 13.5px; line-height: 1.6; color: var(--color-default-two); margin-bottom: 12px; }

/* Profil sayfasındaki harita için yükseklik ayarı */
.profile-map__canvas { min-height: 420px; max-height: 520px; height: 420px; border-radius: 3px; }
@media (max-width: 575px) { .profile-map__canvas { min-height: 360px; height: 360px; } }

/* Yakın yerler grid (artık kullanılmıyor ama eski signup'lar için kalsın) */
.profile-places {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.profile-place {
    display: flex; gap: 12px; align-items: center;
    padding: 12px;
    border: 1px solid #eef0f5;
    border-radius: 3px;
    transition: border-color .15s ease, transform .15s ease;
}
.profile-place:hover { border-color: var(--color-primary); transform: translateY(-1px); }
.profile-place__icon {
    width: 36px; height: 36px;
    background: var(--color-sec-bg);
    color: var(--color-primary);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.profile-place strong { display: block; font-size: 13.5px; color: var(--color-heading); }
.profile-place small { font-size: 11.5px; color: var(--color-default-two); }

/* Documents list */
.profile-docs { list-style: none; padding: 0; margin: 0; }
.profile-doc {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eef0f5;
}
.profile-doc:last-child { border-bottom: 0; }
.profile-doc__icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.profile-doc--approved .profile-doc__icon { background: #e6f7ee; color: #1a7d4a; }
.profile-doc--uploaded .profile-doc__icon { background: #fff8e6; color: #b08600; }
.profile-doc--pending  .profile-doc__icon { background: #fde8e8; color: #a51f24; }
.profile-doc__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.profile-doc__body strong { font-size: 14.5px; color: var(--color-heading); }
.profile-doc__body small { color: var(--color-default-two); font-size: 12.5px; }
.profile-doc__status {
    font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    padding: 4px 10px; border-radius: 99px;
}
.profile-doc--approved .profile-doc__status { background: #e6f7ee; color: #1a7d4a; }
.profile-doc--uploaded .profile-doc__status { background: #fff8e6; color: #b08600; }
.profile-doc--pending  .profile-doc__status { background: #fde8e8; color: #a51f24; }
.profile-doc--rejected .profile-doc__icon   { background: #fde8e8; color: #a51f24; }
.profile-doc--rejected .profile-doc__status { background: #fde8e8; color: #a51f24; }

/* Doc upload action area */
.profile-doc__action { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.profile-doc__file { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 12px; }
.profile-doc__file a { color: var(--color-primary); font-weight: 600; }
.doc-upload-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 12px; font-size: 11.5px; cursor: pointer;
    background: var(--color-heading); color: #fff; border: none;
    text-transform: uppercase; letter-spacing: 0.04em;
    transition: background .15s ease;
}
.doc-upload-btn:hover { background: var(--color-secondary); color: #fff; }

/* Chat (mesajlaşma) */
.profile-chat {
    max-height: 420px;
    overflow-y: auto;
    padding: 14px;
    background: var(--color-sec-bg);
    border-radius: 3px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.profile-chat__empty { color: var(--color-default-two); text-align: center; padding: 28px 12px; font-size: 13.5px; }
.profile-chat__divider { display: flex; align-items: center; gap: 10px; margin: 6px 0; }
.profile-chat__divider::before, .profile-chat__divider::after { content: ''; flex: 1; height: 1px; background: #d8dce4; }
.profile-chat__divider span { font-size: 11.5px; color: var(--color-default-two); padding: 2px 10px; background: #fff; border-radius: 99px; }
.profile-msg { display: flex; }
.profile-msg--student { justify-content: flex-end; }
.profile-msg__bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #e6e8ef;
    box-shadow: 0 2px 6px -3px rgba(11,30,63,0.08);
}
.profile-msg--student .profile-msg__bubble { background: var(--color-heading); color: #fff; border-color: var(--color-heading); }
.profile-msg__sender { display: block; font-size: 10.5px; opacity: .8; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.profile-msg__bubble p { margin: 0; font-size: 14px; line-height: 1.5; }
.profile-msg__bubble small { display: block; font-size: 10.5px; opacity: .7; margin-top: 4px; }
.profile-chat__form { display: flex; gap: 10px; align-items: flex-end; }
.profile-chat__form textarea {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #d8dce4;
    border-radius: 3px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 50px;
}
.profile-chat__form button { flex-shrink: 0; padding: 11px 18px; font-size: 13px; }

/* Galeri */
.profile-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.profile-gallery__item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e6e8ef;
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-heading);
    transition: transform .15s ease, box-shadow .15s ease;
}
.profile-gallery__item:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -16px rgba(11,30,63,0.18); }
.profile-gallery__thumb {
    aspect-ratio: 16/10;
    background: var(--color-sec-bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.profile-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.profile-gallery__icon { color: var(--color-primary); }
.profile-gallery__play {
    position: absolute; inset: 0; margin: auto;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(15,43,91,0.85); color: #fff;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(2px);
}
.profile-gallery__title { padding: 10px 12px 4px; font-family: var(--font-heading); font-size: 14.5px; }
.profile-gallery__item small { padding: 0 12px 12px; color: var(--color-default-two); font-size: 12.5px; line-height: 1.45; }

/* Aktivite log */
.profile-activity { list-style: none; padding: 0; margin: 0; }
.profile-activity__item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eef0f5; align-items: flex-start; }
.profile-activity__item:last-child { border-bottom: 0; }
.profile-activity__icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--color-sec-bg);
    color: var(--color-primary);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
}
.profile-activity__body { flex: 1; }
.profile-activity__body strong { display: block; font-size: 13.5px; color: var(--color-heading); }
.profile-activity__body small { display: block; font-size: 12px; color: var(--color-default-two); }
.profile-activity__time { margin-top: 2px; }

/* Progress bar */
.profile-progress {
    background: var(--color-primary); color: #fff;
    padding: 4px 10px; border-radius: 99px;
    font-size: 12px; font-weight: 700;
}
.profile-progress-bar {
    height: 4px; background: #eef0f5;
    border-radius: 99px; overflow: hidden;
    margin: -10px 0 18px;
}
.profile-progress-bar > span {
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #2a4d8a);
    transition: width .4s ease;
}

/* Submenü ok ikonu — fontawesome'a bağımlı değil, Unicode + font-family override */
.main-menu ul li.menu-item-has-children > a::after,
.header-style-two .main-menu ul li.menu-item-has-children a::after,
.header-style-three .main-menu ul li.menu-item-has-children a::after,
.main-menu ul li ul.submenu .menu-item-has-children > a::after,
.header-style-two .main-menu ul li ul.submenu .menu-item-has-children > a::after {
    content: "\25BE" !important;
    font-family: inherit !important;
    font-weight: 600 !important;
    font-size: 0.7em;
    margin-left: 6px;
    transform: none !important;
    top: -1px !important;
    display: inline-block;
    line-height: 1;
    transition: transform 0.2s ease;
}
.main-menu ul li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg) !important;
}
/* Mobil sub-menu için xb-menu-primary */
.xb-menu-primary li.menu-item-has-children > a::after {
    content: "\25BE";
    font-family: inherit;
    font-size: 0.7em;
    margin-left: 6px;
    display: inline-block;
}

/* Mobil hamburger menünün JS ile eklenen ok butonu (.xb-menu-toggle) — fontawesome'a bağımlı değil */
.xb-menu-toggle::before {
    content: "\25BE" !important;
    font-family: inherit !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--color-heading);
}
.xb-menu-toggle.active::before {
    content: "\25B4" !important;
}
