/* Brother Signature Font Entegrasyonu */
@font-face {
    font-family: 'Brother Signature';
    src: url('./font/Brother Signature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apple-esque Premium Off-White & Red Color Palette */
:root {
    --bg-color: #FDFBFA;
    /* Sıcak, kırmızıya hafif çalan ultra-premium zemin */
    --primary-red: #E30713;
    /* Yozgat Bozok Üniversitesi Vurgu Kırmızısı */
    --primary-red-hover: #c40610;
    --primary-red-glow: rgba(227, 7, 19, 0.06);
    --text-dark: #000000;
    --text-gray: #444444;
    --text-light: #777777;
    --card-bg: rgba(255, 255, 255, 0.75);
    --card-border: rgba(227, 7, 19, 0.06);
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: -0.02em;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-stack);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: 5rem;
}

/* 1. HERO SECTION */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 4.5% 5rem 4.5%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.hero-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
}

.logo-wrapper-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(227, 7, 19, 0.15));
    transition: transform 0.4s ease;
}

.logo-container:hover .logo-wrapper-svg {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.logo-main {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.16em;
    margin-top: 0.2rem;
}

.hero-body {
    margin-top: auto;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    line-height: 0.85;
    /* Satırlar arası dikey mesafeyi daralttık */
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title span {
    font-family: 'Brother Signature', cursive, sans-serif;
    font-size: clamp(7.5rem, 11.5vw, 10.5rem);
    font-weight: 400;
    color: var(--primary-red);
    display: inline-block;
    margin-top: 0.8rem;
    /* Dikey olarak üst satıra yaklaştırma */
    letter-spacing: normal;
    background: none;
    -webkit-text-fill-color: var(--primary-red);
    text-transform: none;
    /* Cursive fontun kendi büyük-küçük harf yapısını korur */
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--text-gray);
    font-weight: 450;
    max-width: 680px;
    line-height: 1.45;
    margin-bottom: 3.5rem;
}

.btn-premium-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 1.1rem 2.25rem;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(227, 7, 19, 0.25);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-premium-hero:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(227, 7, 19, 0.4);
}

.btn-premium-hero svg {
    width: 18px;
    height: 18px;
    animation: floatArrow 1.8s infinite ease-in-out;
}

@keyframes floatArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.hero-watermark {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    height: 75vh;
    width: auto;
    opacity: 0.035;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

@media (max-width: 768px) {
    .hero-watermark {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .hero-title span {
        font-size: clamp(3.8rem, 12vw, 5.8rem);
        margin-top: 0.4rem;
    }
}

/* 2. BENTO CONTAINER GRID */
.bento-container {
    padding: 0 4.5% 5rem 4.5%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(270px, auto);
    gap: 2.25rem;
    box-sizing: border-box;
}

/* Bento Spans */
.col-span-12 {
    grid-column: span 12;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-6 {
    grid-column: span 6;
}

.col-span-4 {
    grid-column: span 4;
}

.row-span-2 {
    grid-row: span 2;
}

.row-span-1 {
    grid-row: span 1;
}

/* Common Card Style */
.bento-item {
    position: relative;
    border-radius: 32px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03), 0 1px 1px rgba(0, 0, 0, 0.01), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.bento-item:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 7, 19, 0.2);
    box-shadow: 0 30px 65px -15px rgba(0, 0, 0, 0.07), 0 8px 24px -4px rgba(227, 7, 19, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.card-badge {
    align-self: flex-start;
    padding: 0.4rem 0.95rem;
    background: var(--primary-red-glow);
    color: var(--primary-red);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.why-bozok-card {
    grid-row: span 2 !important;
}


/* CARD 1: NEDEN BOZOK? */
.why-bozok-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.why-bozok-left {
    width: 58%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.why-bozok-right {
    width: 42%;
    position: relative;
    background: #000;
    overflow: hidden;
}

.card-large-title {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.why-bozok-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.4rem;
    border-radius: 20px;
    margin-bottom: 1.75rem;
    align-self: flex-start;
    width: 100%;
}

.tab-btn {
    border: none;
    background: none;
    padding: 0.6rem 1.25rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text-gray);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn.active {
    background: #ffffff;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tab-content-container {
    position: relative;
    flex-grow: 1;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-pane.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    position: relative;
}

.pane-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.pane-title i,
.pane-title svg {
    color: var(--primary-red);
    margin-right: 0.65rem;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.pane-desc {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

.btn-why-brochure {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    align-self: flex-start;
    background: rgba(227, 7, 19, 0.05);
    border: 1px solid rgba(227, 7, 19, 0.15);
    color: var(--primary-red);
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1.5rem;
}

.btn-why-brochure:hover {
    background: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(227, 7, 19, 0.2);
    transform: translateY(-2px);
}

.btn-why-brochure svg {
    width: 16px;
    height: 16px;
}

.why-img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.why-img-slide.active {
    opacity: 0.9;
    transform: scale(1);
}


/* CARD 2: YOBU GALERİ */
.card-gallery {
    position: relative;
    background: #000;
}

.gallery-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    color: #ffffff;
}

.gallery-badge {
    align-self: flex-start;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gallery-badge svg {
    width: 13px;
    height: 13px;
}

.gallery-info {
    margin-bottom: auto;
    margin-top: auto;
    transform: translateY(40px);
}

.gallery-title {
    font-size: 1.85rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.45;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 90%;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.control-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.control-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.05);
}

.control-btn svg {
    width: 18px;
    height: 18px;
}

.gallery-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.35);
}


/* CARD 3: TABAN PUANLARI & KONTENJANLAR */
.puanlar-wrapper {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.puanlar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.puanlar-title-area {
    display: flex;
    flex-direction: column;
}

.card-medium-title {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-top: 0.4rem;
}

.search-box {
    position: relative;
    width: 220px;
}

.search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-light);
}

#deptSearch {
    width: 100%;
    padding: 0.6rem 0.85rem 0.6rem 2.3rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

#deptSearch:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 7, 19, 0.12);
}

.filter-pills {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.pill {
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.02);
    padding: 0.45rem 1.1rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.76rem;
    color: var(--text-gray);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill.active {
    background: var(--text-dark);
    color: #ffffff;
    border-color: var(--text-dark);
}

.table-container {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 250px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.puan-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

.puan-table th {
    background: rgba(0, 0, 0, 0.015);
    padding: 0.85rem 1.2rem;
    font-weight: 800;
    color: var(--text-gray);
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.puan-table td {
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    color: var(--text-gray);
    font-weight: 500;
}

.puan-table tbody tr {
    transition: background 0.25s ease;
}

.puan-table tbody tr:hover {
    background: rgba(227, 7, 19, 0.015);
}

.dept-name {
    font-weight: 700;
    color: var(--text-dark);
}

.puan {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    color: var(--primary-red);
}

.badge {
    padding: 0.2rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 800;
    border-radius: 4px;
}

.badge-say {
    background: rgba(227, 7, 19, 0.08);
    color: var(--primary-red);
}

.badge-ea {
    background: rgba(0, 150, 136, 0.08);
    color: #009688;
}

.badge-soz {
    background: rgba(255, 152, 0, 0.08);
    color: #FF9800;
}

.badge-dil {
    background: rgba(63, 81, 181, 0.08);
    color: #3F51B5;
}

.table-container::-webkit-scrollbar {
    width: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: transparent;
}

.table-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.16);
}


/* CARD 4: KAMPÜS YERLEŞİM PLANI */
.map-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.map-info-section {
    width: 44%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.map-intro-text {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-top: 0.5rem;
    margin-bottom: auto;
}

.spotlight-panel {
    background: rgba(227, 7, 19, 0.02);
    border: 1px solid rgba(227, 7, 19, 0.06);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
    transition: var(--transition-smooth);
}

.spot-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.spot-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.map-canvas-container {
    width: 56%;
    height: 100%;
    position: relative;
    background: radial-gradient(circle at center, #ffffff 0%, rgba(253, 251, 250, 0.4) 100%);
    overflow: hidden;
}

.map-abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.hotspot {
    position: absolute;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 5;
    outline: none;
    transform: translate(-50%, -50%);
}

.ping {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.35;
    animation: pingEffect 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.dot-core {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotspot.active .dot-core {
    background: #000000;
    border-color: var(--primary-red);
    transform: scale(1.3);
}

.hotspot.active .ping {
    background: #000000;
}

.hotspot:hover .dot-core {
    transform: scale(1.35);
    box-shadow: 0 4px 12px rgba(227, 7, 19, 0.35);
}

@keyframes pingEffect {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}


/* CARD 5: RADYO BOZOK */
.radio-wrapper {
    display: flex;
    align-items: center;
    padding: 2.25rem 3rem;
    height: 100%;
    gap: 1.75rem;
    box-sizing: border-box;
}

.radio-album-art {
    width: 86px;
    height: 86px;
    border-radius: 24px;
    background: linear-gradient(135deg, #E30713 0%, #99050d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -6px rgba(227, 7, 19, 0.35);
    flex-shrink: 0;
}

.radio-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.live-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.06em;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    border-radius: 50%;
    animation: dotPulse 1.4s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(0.85);
        opacity: 0.4;
    }
}

.track-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-channel {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 550;
    margin-bottom: 0.6rem;
}

.play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: var(--text-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.play-btn:hover {
    background: var(--primary-red);
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(227, 7, 19, 0.25);
}

.play-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: none;
}

.sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.sound-wave .bar {
    width: 3px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 10px;
    transition: height 0.3s ease;
}

.sound-wave.playing .bar {
    animation: waveBounce 1.2s ease-in-out infinite alternate;
}

.sound-wave.playing .bar:nth-child(1) {
    animation-delay: 0.15s;
    height: 16px;
}

.sound-wave.playing .bar:nth-child(2) {
    animation-delay: 0.35s;
    height: 11px;
}

.sound-wave.playing .bar:nth-child(3) {
    animation-delay: 0.55s;
    height: 15px;
}

.sound-wave.playing .bar:nth-child(4) {
    animation-delay: 0.25s;
    height: 7px;
}

.sound-wave.playing .bar:nth-child(5) {
    animation-delay: 0.45s;
    height: 13px;
}

.sound-wave.playing .bar:nth-child(6) {
    animation-delay: 0.15s;
    height: 9px;
}

.sound-wave.playing .bar:nth-child(7) {
    animation-delay: 0.65s;
    height: 16px;
}

.sound-wave.playing .bar:nth-child(8) {
    animation-delay: 0.35s;
    height: 8px;
}

@keyframes waveBounce {
    0% {
        height: 2px;
    }

    100% {
        height: 18px;
    }
}


/* CARD 6: SIKÇA SORULAN SORULAR */
.faq-wrapper {
    padding: 2.25rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
}

.card-small-title {
    font-size: 1.18rem;
    font-weight: 900;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    letter-spacing: -0.01em;
}

.card-small-title svg {
    width: 20px;
    height: 20px;
    color: var(--primary-red);
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 0.25rem;
}

.faq-accordion-list::-webkit-scrollbar {
    width: 4px;
}

.faq-accordion-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 0.6rem 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-trigger:hover {
    color: var(--primary-red);
}

.faq-chevron {
    width: 15px;
    height: 15px;
    color: var(--text-light);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
    padding-bottom: 0.85rem;
    font-weight: 500;
}


/* CARD 7: HIZLI ERİŞİM & YÖK ATLAS */
.links-wrapper {
    padding: 2.25rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
}

.link-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
    justify-content: center;
}

.premium-link-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(227, 7, 19, 0.02);
    border: 1px solid rgba(227, 7, 19, 0.05);
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-link-card:hover {
    background: rgba(227, 7, 19, 0.06);
    border-color: rgba(227, 7, 19, 0.18);
    transform: translateY(-2px);
}

.link-card-body {
    display: flex;
    flex-direction: column;
}

.link-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
}

.link-desc {
    font-size: 0.72rem;
    color: var(--text-gray);
    margin-top: 0.15rem;
    font-weight: 500;
}

.link-arrow {
    width: 15px;
    height: 15px;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.premium-link-card:hover .link-arrow {
    transform: translate(2px, -2px);
}

.sub-links-row {
    display: flex;
    gap: 0.75rem;
}

.sub-link-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 0.65rem;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sub-link-btn:hover {
    background: var(--text-dark);
    color: #ffffff;
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.sub-link-btn svg {
    width: 14px;
    height: 14px;
}

/* REKTÖRÜN MESAJI KARTI */
.card-rector {
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(227, 7, 19, 0.04);
    border: 1px solid rgba(227, 7, 19, 0.12);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
    height: 100%;
    box-sizing: border-box;
}

.card-rector .card-small-title {
    margin-bottom: 0.5rem !important;
}

.card-rector:hover {
    background: rgba(227, 7, 19, 0.06);
    border-color: rgba(227, 7, 19, 0.25);
}

.rector-quote-icon {
    font-size: 5rem;
    color: var(--primary-red);
    opacity: 0.08;
    position: absolute;
    top: 0.5rem;
    left: 2rem;
    font-family: serif;
    pointer-events: none;
    line-height: 1;
}

.rector-quote-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    z-index: 2;
    margin-top: 0;
    margin-bottom: 0;
}

.rector-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.rector-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-red-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.rector-avatar svg {
    width: 20px;
    height: 20px;
}

.rector-info {
    display: flex;
    flex-direction: column;
}

.rector-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
}

.rector-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.rector-message-layout {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
    min-height: 0;
}

.rector-message-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.rector-message-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 180px;
}

.rector-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    outline: 2px solid var(--primary-red);
    box-shadow: 0 10px 25px rgba(227, 7, 19, 0.15);
    margin-bottom: 0.5rem;
    background: var(--primary-red-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.rector-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rektor-meta, .rector-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
}

.rector-name-large {
    font-size: 1rem;
    font-weight: 850;
    color: var(--text-dark);
    white-space: nowrap;
}

.rector-title-large {
    font-size: 0.8rem;
    font-weight: 750;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 800px) {
    .rector-message-layout {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .rector-message-right {
        width: 100%;
    }

    .rector-avatar-large {
        width: 110px !important;
        height: 110px !important;
        margin-bottom: 0.5rem;
    }
}

/* KURUMSAL BENTO BLOKLARI */
.card-corporate {
    grid-column: span 4;
    grid-row: span 1;
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}

.corporate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.corporate-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--primary-red-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: var(--transition-smooth);
}

.corporate-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.corporate-title {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-top: 0.85rem;
    margin-bottom: 0.6rem;
}

.corporate-text {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.48;
    font-weight: 500;
    flex-grow: 1;
}

.corporate-footer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-top: 1.25rem;
    transition: var(--transition-smooth);
}

.corporate-footer svg {
    width: 14px;
    height: 14px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-corporate:hover .corporate-footer svg {
    transform: translate(3px, -3px);
}

.card-corporate:hover .corporate-icon-wrapper {
    background: var(--primary-red);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(227, 7, 19, 0.2);
}

/* ÇOK GENİŞ SOSYAL İMKANLAR KARTI */
.card-wide-banner {
    grid-column: span 12;
    grid-row: span 1;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}

.banner-left {
    max-width: 75%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text-dark);
    color: #ffffff;
    padding: 0.95rem 1.85rem;
    border-radius: 100px;
    font-size: 0.86rem;
    font-weight: 800;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin-left: 2rem;
}

.card-wide-banner:hover .banner-right {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(227, 7, 19, 0.25);
}

.banner-right svg {
    width: 16px;
    height: 16px;
}

/* ÖĞRENCİ PORTALI KARTI EK ÖZEL STİLLERİ */
.card-student-portal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(30, 41, 59, 0.03)) !important;
    border: 1px solid rgba(30, 41, 59, 0.08) !important;
    box-shadow: 0 10px 30px -15px rgba(30, 41, 59, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.card-student-portal:hover {
    border-color: rgba(30, 41, 59, 0.2) !important;
    box-shadow: 0 25px 50px -12px rgba(30, 41, 59, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.card-student-portal:hover .banner-right {
    background: var(--primary-red) !important;
    box-shadow: 0 10px 22px rgba(227, 7, 19, 0.25) !important;
}

/* ANIMATION TRIGGERS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 3. İKİLİ GÖRSEL VİTRİNİ */
.showcase-section {
    padding: 0 4.5% 5rem 4.5%;
    width: 100%;
    box-sizing: border-box;
}

.showcase-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
    width: 100%;
}

.showcase-card {
    position: relative;
    background: var(--bg-color);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1414 / 2000;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08), 0 8px 24px -4px rgba(227, 7, 19, 0.06);
}

.showcase-card:hover img {
    transform: scale(1.03);
}

/* 4. İSTATİSTİK VE SAYILAR BÖLÜMÜ */
.stats-section {
    padding: 0 4.5% 5rem 4.5%;
    width: 100%;
    box-sizing: border-box;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 5rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.stat-icon-wrapper {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.stat-num-value {
    font-size: clamp(3.5rem, 5.5vw, 5.5rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.stat-label-text {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-box:hover {
    transform: translateY(-4px);
}

.stat-box:hover .stat-icon-wrapper {
    transform: scale(1.1);
}

/* 5. SİNEMATİK VİDEO ALANI */
.video-hero-section {
    width: 100vw;
    height: 520px;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), url('https://galeri.bozok.edu.tr/kampus/images/big/21.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 6rem;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.video-play-btn {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: none;
    background: var(--primary-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(227, 7, 19, 0.4);
    transition: var(--transition-smooth);
    animation: videoPulse 2s infinite;
}

.video-play-btn:hover {
    transform: scale(1.08);
    background: var(--primary-red-hover);
    box-shadow: 0 15px 35px rgba(227, 7, 19, 0.6);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    stroke: none;
    transform: translateX(3px);
}

.video-badge-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes videoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 7, 19, 0.45);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(227, 7, 19, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(227, 7, 19, 0);
    }
}

/* YOUTUBE MODAL OYNATICI */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--primary-red);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 18px;
    height: 18px;
}

.video-iframe-container {
    width: 100%;
    height: 100%;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
}

/* BROŞÜR MODAL */
.brochure-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brochure-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.brochure-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-modal.active .brochure-modal-content {
    transform: scale(1);
}

.brochure-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.brochure-modal-close:hover {
    background: var(--primary-red);
    color: #ffffff;
    transform: rotate(90deg);
}

.brochure-modal-close svg {
    width: 18px;
    height: 18px;
}

.brochure-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    max-height: 90vh;
}

.brochure-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 6. İNTERAKTİF BİRİMLER VE S.S.S. */
.support-section {
    padding: 0 4.5% 6rem 4.5%;
    width: 100%;
    box-sizing: border-box;
}

.support-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    width: 100%;
}

.support-column {
    display: flex;
    flex-direction: column;
}

.support-column-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.support-card {
    background: #ffffff;
    border: 1px solid rgba(227, 7, 19, 0.08);
    border-radius: 20px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.support-card:hover {
    border-color: rgba(227, 7, 19, 0.2);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04), 0 4px 10px rgba(227, 7, 19, 0.03);
    transform: translateY(-2px);
}

.support-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.support-trigger:hover {
    color: var(--primary-red);
}

.support-icon {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-card.active .support-icon {
    transform: rotate(45deg);
    color: var(--primary-red);
}

.support-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-panel-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    padding-top: 1rem;
}

.support-panel p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.55;
    font-weight: 500;
}

.support-list {
    margin-top: 1rem;
    padding-left: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

.support-list li {
    font-size: 0.82rem;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.4;
}

/* RESPONSIVE LAYOUTS */

/* TABLETS (max-width: 1110px) */
@media (max-width: 1110px) {
    .hero {
        padding: 3rem 3rem 4rem 3rem;
        min-height: auto;
    }

    .showcase-section,
    .stats-section {
        padding: 0 3rem 4rem 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
        padding-top: 3.5rem;
    }

    .support-section {
        padding: 0 3rem 4rem 3rem;
    }

    .support-grid-layout {
        gap: 2.5rem;
    }

    /* Orijinal 12 kolon düzenini koru, sadece yükseklik ve taşmaları düzenle */
    .bento-container {
        grid-template-columns: repeat(12, 1fr) !important;
        padding: 0 2rem 3.5rem 2rem !important;
        gap: 1.25rem !important;
        grid-auto-rows: auto !important;
        /* Yüksekliklerin içeriğe göre esnemesini sağla */
    }

    .bento-item {
        grid-row: auto !important;
        height: auto !important;
        padding: 1.5rem !important;
        /* Kart içi boşlukları küçülterek metin alanını artır */
    }

    .col-span-12 {
        grid-column: span 12 !important;
    }

    .col-span-8 {
        grid-column: span 8 !important;
    }

    .col-span-6 {
        grid-column: span 6 !important;
    }

    .col-span-4 {
        grid-column: span 4 !important;
    }

    /* Yazı boyutlarını ve satır yüksekliklerini optimize et */
    .card-large-title {
        font-size: 1.85rem !important;
    }

    .card-medium-title {
        font-size: 1.3rem !important;
    }

    .corporate-title {
        font-size: 1.05rem !important;
    }

    .corporate-text {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    /* Card 1: Neden Bozok Tablet Ayarları */
    .why-bozok-left {
        width: 58% !important;
        padding: 1.75rem !important;
    }

    .why-bozok-right {
        width: 42% !important;
    }

    .tab-btn {
        padding: 0.45rem 0.8rem !important;
        font-size: 0.76rem !important;
    }

    .pane-title {
        font-size: 1.1rem !important;
    }

    .pane-desc {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    /* Card 4: Map Tablet Ayarları */
    .map-info-section {
        width: 44% !important;
        padding: 1.5rem !important;
    }

    .map-canvas-container {
        width: 56% !important;
    }

    .map-intro-text {
        font-size: 0.8rem !important;
    }

    /* Rektörün Mesajı */
    .rector-message-layout {
        gap: 1.5rem !important;
    }

    .rector-message-right {
        width: 160px !important;
    }

    .rector-avatar-large {
        width: 105px !important;
        height: 105px !important;
    }

    .rector-quote-text {
        font-size: 1rem !important;
        line-height: 1.45 !important;
    }

    /* Değişim Programları */
    .exchange-programs-grid {
        gap: 1rem !important;
    }

    .exchange-program-col {
        padding: 1rem !important;
    }

    .program-title {
        font-size: 0.95rem !important;
    }

    .program-desc {
        font-size: 0.78rem !important;
    }

    /* Ekstra Kırılım (762px - 900px arası sıkışan yatay bölümleri dikey yap) */
    @media (max-width: 900px) {
        .why-bozok-content {
            flex-direction: column !important;
        }

        .why-bozok-left {
            width: 100% !important;
            padding: 1.5rem !important;
        }

        .why-bozok-right {
            width: 100% !important;
            height: 240px !important;
        }

        .map-wrapper {
            flex-direction: column !important;
        }

        .map-info-section {
            width: 100% !important;
            border-right: none !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
            padding: 1.5rem !important;
        }

        .map-canvas-container {
            width: 100% !important;
            height: 250px !important;
        }
    }
}

/* MOBILE VIEWS (max-width: 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem 3rem 1.5rem;
    }

    .showcase-section,
    .stats-section {
        padding: 0 1.5rem 3rem 1.5rem;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2.5rem;
    }

    .stat-num-value {
        font-size: 3.2rem;
    }

    .video-hero-section {
        height: 380px;
        margin-bottom: 4rem;
    }

    .video-play-btn {
        width: 76px;
        height: 76px;
    }

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }

    .support-section {
        padding: 0 1.5rem 3rem 1.5rem;
    }

    .support-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-list {
        grid-template-columns: 1fr;
    }

    .support-column-title {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .hero-header {
        margin-bottom: 3rem;
    }

    .logo-main {
        font-size: 0.85rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2.7rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .bento-container {
        display: flex;
        flex-direction: column;
        padding: 0 1.5rem 4rem 1.5rem;
        gap: 1.5rem;
    }

    .bento-item {
        height: auto !important;
        min-height: auto;
        border-radius: 28px;
    }

    /* Card 1: Neden Bozok Mobile Adjust */
    .why-bozok-content {
        flex-direction: column;
    }

    .why-bozok-left {
        width: 100%;
        padding: 2rem 1.75rem;
    }

    .why-bozok-right {
        width: 100%;
        height: 220px;
    }

    .card-large-title {
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
    }

    .why-bozok-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        width: 100% !important;
        border-radius: 12px !important;
        padding: 0.35rem !important;
        gap: 0.5rem !important;
        margin-bottom: 1.25rem;
    }

    .why-bozok-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 8px !important;
    }

    /* Card 2: Gallery Mobile Adjust */
    .gallery-content {
        padding: 2rem 1.75rem;
    }

    .gallery-title {
        font-size: 1.5rem;
    }

    .gallery-info {
        transform: translateY(20px);
    }

    /* Card 3: Puanlar Mobile Adjust */
    .puanlar-wrapper {
        padding: 2rem 1.75rem;
    }

    .puanlar-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .search-box {
        width: 100%;
    }

    .card-medium-title {
        font-size: 1.5rem;
    }

    .filter-pills {
        overflow-x: auto;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }

    .filter-pills::-webkit-scrollbar {
        height: 4px;
    }

    .filter-pills::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 2px;
    }

    .table-container {
        max-height: 220px;
    }

    .puan-table th,
    .puan-table td {
        padding: 0.75rem 0.85rem;
    }

    /* Card 4: Map Mobile Adjust */
    .map-wrapper {
        flex-direction: column;
    }

    .map-info-section {
        width: 100%;
        padding: 2rem 1.75rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .map-canvas-container {
        width: 100%;
        height: 260px;
    }

    .spotlight-panel {
        margin-top: 1.25rem;
        padding: 1.15rem;
    }

    /* Card 5: Radio Mobile Adjust */
    .radio-wrapper {
        padding: 1.75rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1.25rem;
    }

    .radio-details {
        align-items: center;
    }

    .sound-wave {
        justify-content: center;
    }

    /* Card 6 & 7 Mobile Adjust */
    .faq-wrapper,
    .links-wrapper {
        padding: 2rem 1.75rem;
    }

    /* Card 13 Mobile Adjust */
    .card-wide-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem 1.75rem;
    }

    .banner-left {
        max-width: 100%;
    }

    .banner-right {
        margin-left: 0;
    }
}

/* 7. PREMIUM FOTOĞRAF GALERİSİ STİLLERİ */
.gallery-title-wrapper {
    margin-bottom: 2.5rem;
    position: relative;
}

.gallery-title-line {
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.gallery-tab-container {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
    overflow-x: auto;
    white-space: nowrap;
}

.gallery-tab-container::-webkit-scrollbar {
    height: 4px;
}

.gallery-tab-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.gallery-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-stack);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem 0.2rem;
    position: relative;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.gallery-tab-btn:hover {
    color: var(--text-dark);
}

.gallery-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1.05rem;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-tab-btn.active {
    color: var(--text-dark);
}

.gallery-tab-btn.active::after {
    transform: scaleX(1);
}

.photo-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #000;
    cursor: pointer;
    display: none;
    opacity: 0;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.08), 0 6px 18px -4px rgba(227, 7, 19, 0.12);
}

.photo-card:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 7, 19, 0.25);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay-info {
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card:hover .photo-overlay-info {
    transform: translateY(0);
}

.photo-overlay-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.photo-overlay-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    display: inline-block;
}

.photo-card.active-card {
    display: block;
    animation: fadeInCard 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInCard {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.btn-premium-red-gallery {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 1rem 2.25rem;
    font-size: 0.9rem;
    font-weight: 850;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(227, 7, 19, 0.2);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-premium-red-gallery:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(227, 7, 19, 0.35);
}

.btn-premium-red-gallery svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-premium-red-gallery:hover svg {
    transform: translateX(4px);
}

/* 8. PREMIUM BENTO VİDEO GALERİSİ STİLLERİ */
.video-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.25rem;
    width: 100%;
}

.video-bento-card {
    position: relative;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(227, 7, 19, 0.08);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.video-bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 7, 19, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.07), 0 8px 20px -4px rgba(227, 7, 19, 0.05);
}

.video-bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.video-bento-card:hover .video-bento-img {
    transform: scale(1.03);
    opacity: 0.55;
}

.video-bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.video-bento-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(227, 7, 19, 0.3);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, box-shadow 0.4s ease;
}

.video-bento-card:hover .video-bento-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
    background-color: var(--primary-red-hover);
    box-shadow: 0 12px 30px rgba(227, 7, 19, 0.45);
}

.video-bento-play-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: none;
    transform: translateX(2px);
}

.video-bento-info {
    position: absolute;
    bottom: 2rem;
    left: 2.25rem;
    z-index: 2;
    color: #ffffff;
    max-width: 80%;
}

.video-bento-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--primary-red);
    background: rgba(227, 7, 19, 0.12);
    border: 1px solid rgba(227, 7, 19, 0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.video-bento-title {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

/* Responsive Eklemesi */
@media (max-width: 1024px) {
    .photo-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .video-bento-card.col-span-8,
    .video-bento-card.col-span-4 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .photo-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-tab-container {
        gap: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .gallery-tab-btn {
        font-size: 0.85rem;
    }

    .video-bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-bento-card.col-span-8,
    .video-bento-card.col-span-4 {
        grid-column: span 1;
        height: 280px;
    }

    .video-bento-info {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .video-bento-title {
        font-size: 1.15rem;
    }
}

/* 9. MEZUN YORUMLARI CAROUSEL STİLLERİ */
.testimonials-section {
    padding: 2rem 4.5% 1.5rem 4.5%;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--bg-color);
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 4.5rem;
}

.testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.testimonial-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.testimonial-slide-wrapper {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    padding: 3.5rem 1rem 2rem 1rem;
    box-sizing: border-box;
}

.testimonial-card {
    width: 100%;
    max-width: 850px;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(227, 7, 19, 0.08);
    padding: 4.5rem 3.5rem 3.5rem 3.5rem;
    box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.04), 0 5px 15px -5px rgba(227, 7, 19, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 7, 19, 0.16);
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.06), 0 8px 24px -6px rgba(227, 7, 19, 0.08);
}

.testimonial-avatar {
    position: absolute;
    top: -45px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(227, 7, 19, 0.12);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar svg {
    width: 36px;
    height: 36px;
    color: var(--primary-red);
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 850;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.testimonial-role {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.75rem;
}

.testimonial-quote-container {
    position: relative;
    width: 100%;
    z-index: 1;
}

.testimonial-quote-text {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-gray);
    line-height: 1.65;
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.quote-mark-open,
.quote-mark-close {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 8rem;
    color: var(--primary-red);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.quote-mark-open {
    top: -2.5rem;
    left: -0.5rem;
}

.quote-mark-close {
    bottom: -5.5rem;
    right: -0.5rem;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(227, 7, 19, 0.1);
    background: #ffffff;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-nav-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(227, 7, 19, 0.2);
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-nav-btn.prev {
    left: 1rem;
}

.testimonial-nav-btn.next {
    right: 1rem;
}

@media (max-width: 1024px) {
    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
    }

    .testimonial-nav-btn.prev {
        left: 0.5rem;
    }

    .testimonial-nav-btn.next {
        right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-nav-btn {
        display: none;
    }
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.t-dot:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: scale(1.15);
}

.t-dot.active {
    background: var(--primary-red);
    transform: scale(1.35);
}

/* Responsive Eklemesi */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 4rem 2rem 2.5rem 2rem;
        border-radius: 28px;
    }

    .testimonial-avatar {
        width: 80px;
        height: 80px;
        top: -40px;
    }

    .testimonial-name {
        font-size: 1.15rem;
    }

    .testimonial-role {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .quote-mark-open {
        font-size: 6rem;
        top: -2rem;
    }

    .quote-mark-close {
        font-size: 6rem;
        bottom: -4rem;
    }
}

/* 10. PREMIUM BENTO BOX İLETİŞİM ALANI STİLLERİ */
.contact-section {
    padding: 2rem 4.5% 6rem 4.5%;
    width: 100%;
    box-sizing: border-box;
}

.contact-bento-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.25rem;
    width: 100%;
    align-items: stretch;
}

.contact-info-col {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: space-between;
    height: 100%;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid rgba(227, 7, 19, 0.08);
    border-radius: 24px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 7, 19, 0.18);
    box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.05), 0 6px 18px -4px rgba(227, 7, 19, 0.06);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(227, 7, 19, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, color 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.08);
    background-color: var(--primary-red);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(227, 7, 19, 0.2);
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-card-label {
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-red);
}

.contact-card-value {
    font-size: 0.9rem;
    font-weight: 650;
    color: var(--text-gray);
    line-height: 1.45;
}

.contact-map-card {
    grid-column: span 7;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(227, 7, 19, 0.08);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
    background: #ffffff;
    height: 100%;
    min-height: 380px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
}

.contact-map-card:hover {
    border-color: rgba(227, 7, 19, 0.18);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.05), 0 8px 24px -4px rgba(227, 7, 19, 0.04);
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* 11. MINIMALIST HIGH-END FOOTER STİLLERİ */
.premium-footer {
    background-color: var(--bg-color);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem 4.5%;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copyright {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: var(--font-stack);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--primary-red) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.social-link-circle:hover {
    background-color: var(--primary-red-hover);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(227, 7, 19, 0.25);
}

.social-link-circle svg {
    width: 16px !important;
    height: 16px !important;
    stroke: #ffffff !important;
    stroke-width: 2px !important;
    fill: none !important;
    display: inline-block !important;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(227, 7, 19, 0.25);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(227, 7, 19, 0.4);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Responsive Eklemesi */
@media (max-width: 1024px) {
    .contact-info-col {
        grid-column: span 6;
    }

    .contact-map-card {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .contact-bento-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-col {
        grid-column: span 1;
        gap: 1rem;
    }

    .contact-map-card {
        grid-column: span 1;
        height: 300px;
        min-height: auto;
    }

    .footer-container {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

/* DETAILED GÖRSEL MODAL STİLLERİ */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.image-modal-content {
    position: relative;
    width: 90%;
    max-width: 950px;
    max-height: 85vh;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-modal.active .image-modal-content {
    transform: scale(1);
}

.image-modal-img-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    position: relative;
    max-height: 70vh;
    overflow: hidden;
}

.image-modal-img-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.image-modal-caption {
    width: 100%;
    padding: 1.5rem 2.25rem;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    text-align: left;
    color: #ffffff;
}

.image-modal-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--primary-red);
    color: #ffffff;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(227, 7, 19, 0.25);
}

.image-modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
}

.image-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2010;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--primary-red);
    transform: rotate(90deg);
}

.image-modal-close svg {
    width: 20px;
    height: 20px;
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2010;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.image-modal-nav:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-50%) scale(1.08);
}

.image-modal-nav.prev {
    left: 2rem;
}

.image-modal-nav.next {
    right: 2rem;
}

.image-modal-nav svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .image-modal-nav {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.6);
    }

    .image-modal-nav.prev {
        left: 0.75rem;
    }

    .image-modal-nav.next {
        right: 0.75rem;
    }

    .image-modal-content {
        width: 95%;
    }

    .image-modal-caption {
        padding: 1.25rem 1.5rem;
    }

    .image-modal-title {
        font-size: 1.05rem;
    }

    .image-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================
   12. BARINMA VE BESLENME BENTO KARTI STİLLERİ
   ========================================== */
.card-housing,
.card-dining {
    grid-column: span 6;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.25rem 2.5rem;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    height: 100%;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-housing {
    background: rgba(254, 242, 242, 0.75) !important;
    border: 1px solid rgba(227, 7, 19, 0.12) !important;
    box-shadow: 0 10px 30px -15px rgba(227, 7, 19, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.card-dining {
    background: rgba(107, 0, 24, 0.04) !important;
    border: 1px solid rgba(107, 0, 24, 0.12) !important;
    box-shadow: 0 10px 30px -15px rgba(107, 0, 24, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Remove gradient pseudo-elements entirely */
.card-housing::before,
.card-dining::before,
.card-housing::after,
.card-dining::after {
    display: none !important;
}

.card-bento-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    z-index: 2;
}

.card-bento-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-bento-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1.5rem;
}

.card-bento-stats {
    display: flex;
    flex-direction: column;
}

/* Floating animation wrapper */
.btn-animate-wrapper {
    display: inline-flex;
    align-self: flex-end;
    position: relative;
    animation: float-btn 2.6s ease-in-out infinite;
}

@keyframes float-btn {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0);
    }
}

.card-bento-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-housing .card-bento-btn {
    background: #E30713 !important;
    border: 1px solid #E30713 !important;
    color: #ffffff !important;
}

.card-dining .card-bento-btn {
    background: #6B0018 !important;
    border: 1px solid #6B0018 !important;
    color: #ffffff !important;
}

/* Concentric ripple rings animation pulsing outward and fading */
.btn-animate-wrapper::before,
.btn-animate-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.card-housing .btn-animate-wrapper::before,
.card-housing .btn-animate-wrapper::after {
    border: 2px solid rgba(227, 7, 19, 0.35);
    box-shadow: 0 0 6px rgba(227, 7, 19, 0.1);
}

.card-dining .btn-animate-wrapper::before,
.card-dining .btn-animate-wrapper::after {
    border: 2px solid rgba(107, 0, 24, 0.35);
    box-shadow: 0 0 6px rgba(107, 0, 24, 0.1);
}

.btn-animate-wrapper::before {
    animation: ripple-pulse 2.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.btn-animate-wrapper::after {
    animation: ripple-pulse 2.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: 1.3s;
}

@keyframes ripple-pulse {
    0% {
        transform: scale(1, 1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.22, 1.45);
        opacity: 0;
    }
}

.card-housing:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px -10px rgba(227, 7, 19, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(227, 7, 19, 0.25) !important;
}

.card-dining:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px -10px rgba(107, 0, 24, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(107, 0, 24, 0.25) !important;
}

/* Button scaling on hover */
.card-bento-btn:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-housing .card-bento-btn:hover {
    background: #c40610 !important;
    border-color: #c40610 !important;
}

.card-dining .card-bento-btn:hover {
    background: #500010 !important;
    border-color: #500010 !important;
}

.card-bento-btn:hover svg {
    transform: translateX(4px);
}

.card-bento-btn svg {
    transition: transform 0.3s ease;
}

.housing-badge {
    align-self: flex-start;
    padding: 0.45rem 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.card-housing .housing-badge {
    background: rgba(227, 7, 19, 0.06) !important;
    color: #E30713 !important;
    border: 1px solid rgba(227, 7, 19, 0.15) !important;
}

.card-dining .housing-badge {
    background: rgba(107, 0, 24, 0.06) !important;
    color: #6B0018 !important;
    border: 1px solid rgba(107, 0, 24, 0.15) !important;
}

.housing-badge svg {
    width: 13px;
    height: 13px;
}

.housing-title {
    color: #111111 !important;
    font-size: 1.55rem !important;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
}

.corporate-text {
    color: #4b5563 !important;
    font-size: 0.95rem !important;
    line-height: 1.5;
    font-weight: 500;
}

.card-housing .housing-stat-val {
    font-size: 1.85rem;
    font-weight: 900;
    color: #E30713 !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.card-dining .housing-stat-val {
    font-size: 1.85rem;
    font-weight: 900;
    color: #6B0018 !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.housing-stat-lbl {
    font-size: 0.68rem;
    color: #6b7280 !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Responsive adjustment for the housing and dining cards */
@media (max-width: 1024px) {

    .card-housing,
    .card-dining {
        grid-column: span 6;
        padding: 1.75rem 2rem;
    }
}

@media (max-width: 768px) {

    .card-housing,
    .card-dining {
        grid-column: span 12;
        padding: 1.5rem;
        border-radius: 28px;
    }
}

/* ==========================================
   13. ULUSLARARASI DEĞİŞİM PROGRAMLARI STİLLERİ
   ========================================== */
.card-exchange {
    grid-column: span 12;
    grid-row: auto;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border-radius: 32px;
    padding: 3.5rem 3rem 3rem 3rem;
    position: relative;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    cursor: default;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.exchange-card-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
}

.exchange-header {
    margin-bottom: 2.5rem;
}

.exchange-main-title {
    font-size: 1.85rem;
    font-weight: 900;
    color: #111827;
    margin-top: 0.75rem;
    letter-spacing: -0.03em;
}

.exchange-programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.exchange-program-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 6;
}

.program-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bg-erasmus {
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
}

.bg-farabi {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.bg-orhun {
    background: rgba(227, 7, 19, 0.08);
    color: #E30713;
}

.program-icon-box svg {
    width: 22px;
    height: 22px;
}

.program-title {
    font-size: 1.25rem;
    font-weight: 850;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.program-desc {
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
}

/* tam genişlikte buton */
.exchange-action-btn {
    width: 100%;
    text-align: center;
    background: #111827 !important;
    color: #ffffff !important;
    border: 1px solid #111827 !important;
    padding: 1.1rem 2rem;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px -10px rgba(17, 24, 39, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer !important;
}

.exchange-action-btn:hover {
    background: #E30713 !important;
    border-color: #E30713 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(227, 7, 19, 0.45);
}

.exchange-action-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.exchange-action-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Asymmetric Bleeding lines between columns on desktop */
.exchange-decor-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 30%, rgba(0, 0, 0, 0.08) 70%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 2;
    transition: all 0.5s ease;
}

.line-left {
    left: 33.333%;
    top: -25px;
    height: calc(100% + 50px);
    transform: rotate(4deg);
}

.line-right {
    left: 66.666%;
    top: -20px;
    height: calc(100% + 40px);
    transform: rotate(-6deg);
}

/* Card hover glow */
.card-exchange:hover {
    box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Responsive adjustment for columns and lines */
@media (max-width: 1024px) {
    .exchange-programs-grid {
        gap: 2.5rem;
    }

    .line-left {
        transform: rotate(2deg);
    }

    .line-right {
        transform: rotate(-3deg);
    }
}

@media (max-width: 768px) {
    .card-exchange {
        grid-row: auto !important;
        height: auto !important;
        padding: 2rem;
        border-radius: 28px;
    }

    .exchange-programs-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 2.5rem;
    }

    .exchange-decor-line {
        display: none !important;
    }

    .exchange-program-col:not(:last-child) {
        position: relative;
    }

    .exchange-program-col:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -1.5rem;
        left: -10%;
        width: 120%;
        height: 1px;
        background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 30%, rgba(0, 0, 0, 0.06) 70%, rgba(0, 0, 0, 0) 100%);
        transform: rotate(-1deg);
    }
}

/* ==========================================
   14. BİRİMLERİMİZ (FAKÜLTE SHOWCASE) STİLLERİ
   ========================================== */
.card-faculties {
    grid-column: span 12;
    grid-row: span 3;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border-radius: 32px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    cursor: default;
    overflow: hidden;
    width: 100%;
}

.faculty-showcase-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

.faculty-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 0.75rem;
}

/* Custom Scrollbar for Faculty list */
.faculty-tabs-list::-webkit-scrollbar {
    width: 5px;
}

.faculty-tabs-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.faculty-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid transparent;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4b5563;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faculty-tab-btn:hover {
    background: rgba(0, 0, 0, 0.02);
    color: #111827;
}

.faculty-tab-btn.active {
    background: rgba(227, 7, 19, 0.05);
    color: #E30713;
    border-color: rgba(227, 7, 19, 0.1);
}

.faculty-tab-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faculty-details-box {
    position: relative;
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
}

.faculty-content-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faculty-content-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.faculty-img-col {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.faculty-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.faculty-content-panel.active .faculty-img-col img {
    transform: scale(1.02);
}

.faculty-text-col {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

.faculty-card-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #111827;
    margin-top: 0;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.faculty-card-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 2rem;
}

.faculty-card-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #111827;
    color: #ffffff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 850;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.15);
    transition: all 0.3s ease;
}

.faculty-card-link-btn:hover {
    background: #E30713;
    box-shadow: 0 8px 20px rgba(227, 7, 19, 0.3);
    transform: translateY(-2px);
}

.faculty-card-link-btn svg {
    width: 14px;
    height: 14px;
}

/* Faculty Showcase Quicklinks Footer Section */
.faculty-quicklinks-row {
    margin-top: 2.5rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.06);
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.quicklink-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quicklink-title {
    font-size: 0.72rem;
    font-weight: 850;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.quicklink-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quicklink-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: #4b5563 !important;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.quicklink-tag:hover {
    background: #E30713;
    color: #ffffff !important;
    border-color: #E30713;
}

/* 15. SIKÇA SORULAN SORULAR TAM GENİŞLİK STİLLERİ */
.card-faq-full {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border-radius: 32px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    cursor: default;
    width: 100%;
}

.faq-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    width: 100%;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Responsive Faculty Card styles */
@media (max-width: 1200px) {
    .faculty-showcase-container {
        grid-template-columns: 250px 1fr;
        gap: 1.5rem;
    }

    .faculty-text-col {
        padding: 2rem !important;
    }

    .faculty-content-panel {
        grid-template-columns: 1fr 1.1fr !important;
    }

    .faculty-card-title {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    .faculty-card-desc {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 850px) {
    .faculty-showcase-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .mobile-unit-select-wrapper {
        display: block !important;
    }

    .faculty-tabs-list {
        display: none !important;
    }

    .faculty-details-box {
        height: auto !important;
    }

    .faculty-content-panel {
        position: relative !important;
        grid-template-columns: 1fr !important;
        height: auto !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .faculty-img-col {
        height: 250px !important;
    }

    .faculty-text-col {
        padding: 2rem !important;
    }

    .faculty-quicklinks-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .faq-grid-2col {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
}

/* ==========================================
   16. YENİ KATEGORİ SEKME VE MOBİL DROP-DOWN STİLLERİ
   ========================================== */
.category-tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    width: 100%;
}

.cat-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    color: #4b5563;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-tab-btn:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #111827;
    transform: translateY(-1px);
}

.cat-tab-btn.active {
    background: #E30713;
    color: #ffffff;
    border-color: #E30713;
    box-shadow: 0 8px 24px rgba(227, 7, 19, 0.25);
}

.cat-tab-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile Dropdown Custom Wrapper */
.mobile-unit-select-wrapper {
    display: none;
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
}

.mobile-unit-select-wrapper select {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    font-family: inherit;
    font-weight: 750;
    font-size: 0.95rem;
    color: #111827;
    appearance: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.mobile-unit-select-wrapper select:focus {
    outline: none;
    border-color: #E30713;
    box-shadow: 0 0 0 4px rgba(227, 7, 19, 0.1);
}

.mobile-unit-select-wrapper::after {
    content: '▼';
    font-size: 0.75rem;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #E30713;
    pointer-events: none;
}

.faculty-tab-btn {
    flex-shrink: 0 !important;
}

@media (max-width: 600px) {
    .category-tabs-container {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .cat-tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }
}

/* ==========================================
   17. PREMIUM "NEDEN BOZOK?" İNFOGRAFİK ALANI STİLLERİ
   ========================================== */
.bozok-why-section {
    padding: 4rem 4.5% 4rem 4.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
}

.why-grid-container {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

.why-features-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    padding-bottom: 1.25rem;
    border-bottom: 1.5px solid rgba(227, 7, 19, 0.08);
    transition: var(--transition-smooth);
}

/* Hover Efektleri */
.why-feature-item:hover {
    border-bottom-color: var(--primary-red);
}

.left-col .why-feature-item {
    text-align: right;
    flex-direction: row-reverse;
}

.left-col .why-feature-item:hover {
    transform: translateX(-6px);
}

.right-col .why-feature-item:hover {
    transform: translateX(6px);
}

.why-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-red-glow);
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 0.15rem;
    box-shadow: 0 4px 10px rgba(227, 7, 19, 0.05);
    transition: var(--transition-smooth);
}

.why-feature-item:hover .why-feature-icon {
    background: var(--primary-red);
    color: #ffffff;
    transform: scale(1.1);
}

.why-feature-icon svg,
.why-feature-icon i {
    width: 15px;
    height: 15px;
}

.why-feature-text {
    display: flex;
    flex-direction: column;
}

.why-feature-text h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.why-feature-text p {
    font-size: 0.78rem;
    color: var(--text-gray);
    line-height: 1.5;
    font-weight: 450;
}

/* Orta Sütun (Görsel ve El Yazısı Başlık) */
.why-image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
}

.why-bozok-special-title {
    position: absolute;
    top: -2.5rem;
    z-index: 10;
    font-family: 'Brother Signature', cursive, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 400;
    color: var(--primary-red);
    text-transform: none;
    white-space: nowrap;
    text-align: center;
    transform: rotate(-3deg);

    /* Enclosing Border Styling */
    background: #ffffff;
    border: 2px solid var(--primary-red);
    padding: 0.4rem 2rem;
    border-radius: 100px;
    box-shadow: 0 12px 35px -8px rgba(227, 7, 19, 0.22);
}

.why-img-frame {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 65px -15px rgba(227, 7, 19, 0.12), 0 5px 20px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--card-border);
    background: #ffffff;
    padding: 3.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.why-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-image-col:hover .why-img-frame {
    transform: translateY(-4px);
    box-shadow: 0 35px 80px -20px rgba(227, 7, 19, 0.18);
}

.why-image-col:hover .why-img-frame img {
    transform: scale(1.05);
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .why-grid-container {
        gap: 1.5rem;
    }

    .why-feature-text h3 {
        font-size: 0.88rem;
    }

    .why-feature-text p {
        font-size: 0.75rem;
    }

    .why-img-frame {
        padding: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .why-grid-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .why-image-col {
        grid-row: 1;
        width: 100%;
    }

    .left-col .why-feature-item {
        text-align: left;
        flex-direction: row;
    }

    .left-col .why-feature-item:hover {
        transform: translateX(6px);
    }
}

@media (max-width: 600px) {
    .bozok-why-section {
        padding: 4rem 4.5%;
    }

    .why-bozok-special-title {
        font-size: 2.6rem;
        top: -1.5rem;
    }

    .why-feature-item {
        gap: 0.85rem;
        padding-bottom: 1rem;
    }
}

/* ==========================================
   18. ORTALANMIŞ ŞIK GRADYAN AYIRICI ÇİZGİ
   ========================================== */
.section-divider {
    border: 0;
    height: 1.5px;
    background: linear-gradient(to right, rgba(227, 7, 19, 0) 0%, rgba(227, 7, 19, 0.15) 20%, rgba(227, 7, 19, 0.15) 80%, rgba(227, 7, 19, 0) 100%);
    margin: 1.5rem auto 1rem auto;
    width: 91%;
    max-width: 1400px;
    display: block;
}