:root {
    /* Colors based on reference */
    --color-navy: #0a294e;
    --color-navy-dark: #071e3a;
    --color-navy-light: #123e72;
    --color-red: #bf1e1d;
    --color-red-hover: #da0024;
    --color-crimson: #5F0303;

    /* Backgrounds */
    --bg-body: #ececec;
    /* Outside the box */
    --bg-box: #ffffff;
    --bg-light: #f6f6f6;
    --bg-gray: #f2f2f2;

    /* Text */
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #999999;

    /* Typography */
    --font-body: 'Titillium Web', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    /* Shadows */
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-red: 0px 4px 15px 0px rgba(218, 0, 36, 0.4);

    /* Layout */
    --box-max-width: 1260px;
}

/* --- Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    /* Darker gray outside the box */
    line-height: 1.6;
    font-size: 16px;
    /* Optional: subtle background pattern for body */
    background-image: radial-gradient(#d4d4d4 1px, transparent 1px);
    background-size: 20px 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Boxed Layout Setup --- */
.boxed-wrapper {
    max-width: var(--box-max-width);
    margin: 0 auto;
    background-color: var(--bg-box);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    /* Contains floats and edges */
}

/* --- Utilities --- */
.section-padding {
    padding: 40px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 20px;
    }
}

.section-light {
    background-color: var(--bg-light);
    border-bottom: 1px dotted #dddddd;
}

.section-white {
    background-color: #ffffff;
    border-bottom: 1px dotted #dddddd;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-red {
    display: inline-block;
    background-color: var(--color-red);
    color: #fff;
    padding: 12px 30px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s;
}

.btn-red:hover {
    background-color: var(--color-red-hover);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.btn-red-outline {
    display: inline-block;
    border: 2px solid var(--color-red);
    color: var(--color-red);
    padding: 12px 30px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    border-radius: 3px;
}

.btn-red-outline:hover {
    background-color: var(--color-red);
    color: #fff;
}

.btn-dark {
    display: inline-block;
    background-color: var(--color-navy);
    color: #fff;
    padding: 10px 25px;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 0.5px;
}

.btn-dark:hover {
    background-color: var(--color-red);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--color-navy);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title h2 span {
    color: var(--color-red);
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--color-red), var(--color-crimson));
    margin: 0 auto 20px;
}

.title-divider.left {
    margin-left: 0;
}

.title-divider.center {
    margin: 0 auto 20px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Header --- */
.site-header {
    position: relative;
    z-index: 100;
    background-color: #fff;
    border-bottom: 2px solid var(--color-red);
}

.top-bar {
    background-color: var(--color-navy);
    color: #ccc;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    padding: 8px 40px;
}

.top-bar a {
    color: #ddd;
}

.top-bar a:hover {
    color: var(--color-red);
}

.top-bar .divider {
    margin: 0 10px;
    color: #666;
}

.main-nav-area {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    padding: 0 40px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

/* Floating Logo */
.floating-logo {
    position: absolute;
    left: 40px;
    top: -8px;
    /* Overlaps top bar */
    z-index: 110;
}

.logo-circle {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s;
}

.logo-circle:hover {
    transform: scale(1.05);
}

/* Main Menu */
.main-menu {
    margin-left: 170px;
    /* Make room for floating logo */
}

.main-menu ul {
    display: flex;
    gap: 30px;
}

.main-menu a {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--color-navy);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 35px 0;
    /* Full height for hover target */
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--color-red);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    transform: scaleX(1);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-navy);
    cursor: pointer;
    margin-left: 15px;
}

/* --- Hero Slider --- */


.slider-section {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 800;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}


/* Dark overlay to make text pop */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
}

.slider-caption {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    max-width: 600px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-red);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.slide-subtitle {
    font-family: var(--font-heading);
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-desc {
    font-size: 18px;
    margin-bottom: 30px;
    color: #eeeeee;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
}

/* --- Quick Info Ribbon --- */
.info-ribbon {
    background-color: var(--color-navy);
    border-bottom: 4px solid var(--color-red);
}

.ribbon-inner {
    /* flex handled by Bootstrap d-flex */
}

.ribbon-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.ribbon-item.highlight {
    background-color: var(--color-red);
    border-right: none;
    cursor: pointer;
    transition: background 0.3s;
}

.ribbon-item.highlight:hover {
    background-color: var(--color-crimson);
}

.ribbon-icon {
    font-size: 35px;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.ribbon-item.highlight .ribbon-icon {
    color: #fff;
}

.ribbon-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.ribbon-text span {
    font-size: 15px;
	font-weight:600;
    color: rgba(255, 255, 255, 0.6);
}

.ribbon-item.highlight .ribbon-text span {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Cards Grid (About) --- */
/* card-grid layout now handled by Bootstrap row/col */
.feature-card {
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    top: 0;
}

.feature-card:hover {
    top: -10px;
    border-bottom-color: var(--color-red);
    box-shadow: var(--shadow-red);
}

.fc-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--color-navy);
    transition: all 0.3s;
}

.feature-card:hover .fc-icon {
    background-color: var(--color-red);
    color: #fff;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    color: var(--color-red);
    font-size: 14px;
    text-transform: uppercase;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.feature-card:hover .read-more i {
    transform: translateX(5px);
}

/* --- Photo Gallery --- */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-overlay i {
    font-size: 28px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* --- Rector Section --- */
/* rector-container layout now handled by Bootstrap row/col */
.rector-img-box {
    position: relative;
}

.rector-img-box img {
    width: 100%;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rector-label {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background-color: var(--color-red);
    color: #fff;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: var(--shadow-red);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.quote-text {
    position: relative;
    padding-left: 40px;
}

.quote-mark {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    color: #e0e0e0;
}

.quote-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
}

.quote-text p:first-of-type {
    color: var(--text-main);
    font-weight: 600;
}

/* --- Image Card Grid (Faculties) --- */
/* image-card-grid layout now handled by Bootstrap row/col */
.img-card {
    background-color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.img-wrapper {
    height: 250px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.img-card:hover .img-wrapper img {
    transform: scale(1.15);
    /* Slower, smoother zoom */
}

.img-card-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: relative;
    z-index: 2;
    border-top: 3px solid transparent;
    transition: border-color 0.3s;
}

.img-card:hover .img-card-content {
    border-top-color: var(--color-red);
}

.img-card-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-navy);
    margin: 0;
}

.card-btn {
    width: 35px;
    height: 35px;
    background-color: var(--bg-gray);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.img-card:hover .card-btn {
    background-color: var(--color-red);
    color: #fff;
}

.img-card:hover {
    box-shadow: var(--shadow-red);
}

/* --- Campus Banner --- */
.campus-banner {
    position: relative;
    padding: 100px 40px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax feel */
    color: #fff;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 41, 78, 0.75);
    /* Navy overlay */
}

.banner-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ddd;
}

/* campus-features flex handled by Bootstrap d-flex */
.campus-features {
    /* spacing handled by Bootstrap gap-4 */
}

.c-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.c-feature i {
    font-size: 40px;
    color: var(--color-red);
}

.c-feature span {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1px;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-navy-dark);
    color: #ccc;
    font-size: 15px;
}

.footer-top {
    padding: 60px 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 25px;
}

/* social-links flex handled by Bootstrap d-flex gap-2 */
.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 3px;
}

.social-links a:hover {
    background-color: var(--color-red);
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-red);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--color-red);
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    font-size: 12px;
    color: var(--color-red);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--color-red);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #041224;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #888;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: calc(50% - (var(--box-max-width) / 2) + 30px);
    /* Align with box edge */
    width: 45px;
    height: 45px;
    background-color: var(--color-red);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    border-radius: 3px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-navy);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1300px) {
    .back-to-top {
        right: 30px;
    }
}

@media (max-width: 1024px) {
    .ribbon-item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .floating-logo {
        position: static;
        /* Remove absolute positioning on mobile */
        margin-top: -30px;
        margin-bottom: 10px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .nav-container {
        height: auto;
        flex-direction: column;
        padding: 20px 0;
    }

    .main-menu {
        margin-left: 0;
        width: 100%;
        display: none;
        /* Hide for mobile toggle */
    }

    .main-menu.active {
        display: block;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .main-menu a {
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .header-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .slide-subtitle {
        font-size: 36px;
    }

    .slider-caption {
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .ribbon-item {
        flex: 0 0 100%;
        border-right: none;
    }

    .slider-section {
        height: 450px;
    }
}

/* --- Tercih Sihirbazı Butonu --- */
.btn-tercih-sihirbazi {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0e1c36 0%, #10294e 40%, #85121b 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(16, 41, 78, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-tercih-sihirbazi::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-tercih-sihirbazi:hover::before {
    left: 150%;
}

.btn-tercih-sihirbazi:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(133, 18, 27, 0.4);
    color: #fff;
}

.btn-tercih-sihirbazi .t-icon {
    font-size: 45px;
    margin-right: 20px;
    color: #fff;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.btn-tercih-sihirbazi .t-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.btn-tercih-sihirbazi .t-title {
    font-size: 21px;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-tercih-sihirbazi .t-title strong {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-tercih-sihirbazi .t-title span {
    font-style: italic;
    font-weight: 300;
    opacity: 0.9;
}

.btn-tercih-sihirbazi .t-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    color: #e2e8f0;
}

.btn-tercih-sihirbazi .t-desc {
    font-size: 13px;
    font-weight: 300;
    color: #cbd5e1;
}
.btn-tercih-sihirbazi .t-desc strong {
    font-weight: 600;
    color: #fff;
}

/* --- Öne Çıkanlar Butonu --- */
.btn-one-cikanlar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: var(--color-navy);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 2px 0 #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid #ffc107;
}

.btn-one-cikanlar:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(164, 16, 25, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fdf2f2 100%);
}

.btn-one-cikanlar .t-icon {
    font-size: 45px;
    margin-right: 20px;
    color: #eab308; /* Premium Gold */
    filter: drop-shadow(0 3px 5px rgba(234, 179, 8, 0.3));
    transition: transform 0.4s ease;
}

.btn-one-cikanlar:hover .t-icon {
    transform: scale(1.1) rotate(5deg);
}

.btn-one-cikanlar .t-content {
    text-align: left;
}

.btn-one-cikanlar .t-title {
    font-size: 16px;
    margin-bottom: -2px;
    letter-spacing: 1px;
    color: #475569;
}

.btn-one-cikanlar .t-subtitle {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 2px;
    background: linear-gradient(to right, var(--color-navy), var(--color-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
}

.btn-one-cikanlar .t-desc {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

/* --- Akademik Takvim Butonu --- */
.btn-takvim {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 40%, #0284c7 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-takvim::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-takvim:hover::before {
    left: 150%;
}

.btn-takvim:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
    color: #fff;
}

.btn-takvim .t-icon {
    font-size: 45px;
    margin-right: 20px;
    color: #fff;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.btn-takvim .t-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.btn-takvim .t-title {
    font-size: 21px;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-takvim .t-title strong {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-takvim .t-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    color: #bae6fd;
}

.btn-takvim .t-desc {
    font-size: 13px;
    font-weight: 300;
    color: #e0f2fe;
}

/* --- Öne Çıkanlar Sayfası Kart Stilleri --- */
.highlight-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    position: relative;
    padding: 30px;
    transition: all 0.3s ease;
    border-top: 5px solid var(--color-navy);
    z-index: 1;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-top: 5px solid var(--color-red);
}

.highlight-num {
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-num {
    color: rgba(164, 16, 25, 0.05); /* Soft Red on hover */
    transform: scale(1.1);
}

.highlight-title {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.highlight-quote {
    font-style: italic;
    color: #85121b; /* slightly darker, richer red */
    margin: 15px 0;
    font-size: 16px;
    border-left: 3px solid var(--color-red);
    padding-left: 15px;
    font-weight: 600;
    background: #fafafa;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
}

.highlight-desc {
    font-size: 16px;
    color: #334155; /* modern slate dark */
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* --- Custom Outline Buttons --- */
.btn-custom-outline {
    display: inline-block;
    padding: 10px 18px;
    border: 1.5px solid #006b9f;
    border-radius: 5px;
    color: #006b9f;
    text-decoration: none;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-custom-outline:hover {
    background-color: #006b9f;
    color: #fff;
}
.btn-custom-outline strong {
    font-weight: 700;
}

/* --- Tesisler ve Yurtlarımız Kart Tasarımı --- */
.facility-card {
    background-color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}
.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-red);
}
.facility-card .img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.facility-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.facility-card:hover .img-wrapper img {
    transform: scale(1.15);
}
.facility-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
    position: relative;
    z-index: 2;
    border-top: 3px solid transparent;
    transition: border-color 0.3s;
}
.facility-card:hover .facility-card-content {
    border-top-color: var(--color-red);
}
.facility-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}
.facility-card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.facility-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}
.facility-card-footer .read-more {
    font-weight: 600;
    color: var(--color-red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}
.facility-card:hover .facility-card-footer .read-more {
    gap: 12px;
}
.facility-card-footer .card-btn {
    width: 40px;
    height: 40px;
    background-color: var(--bg-gray);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}
.facility-card:hover .facility-card-footer .card-btn {
    background-color: var(--color-red);
    color: #fff;
    transform: rotate(-45deg);
}