/* ═══════════════════════════════════════════════════════════
   TSBL Mezunlar - Public Site CSS
   Premium Corporate Theme v2.0
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --primary: #0d2b45;
    --primary-dark: #071a2e;
    --primary-light: #1a4568;
    --primary-rgb: 13, 43, 69;
    --accent: #2e6b9e;
    --accent-light: #4a8ec4;
    --accent-rgb: 46, 107, 158;
    --gold: #c8a45f;
    --gold-light: #dfc48e;
    --gold-rgb: 200, 164, 95;
    --hover-bg: #e8f4f8;
    --text-body: #5a6a7a;
    --text-dark: #1e2d3d;
    --white: #fff;
    --footer-bg: #0d1b2a;
    --footer-dark: #081422;
    --footer-bottom: #0a1825;
    --footer-text: #7a8fa3;
    --border-light: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
    --shadow-glow: 0 0 30px rgba(var(--gold-rgb), 0.15);
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Rajdhani', 'Roboto', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    /* Slide-menu colors (quickbar) */
    --qb-teal: #1a8a7d;
    --qb-slate: #3a6fa0;
    --qb-sky: #2e8bc6;
    --qb-navy: #2e5580;
    --qb-purple: #4a2d6b;
}

/* ─── Base Reset ─── */
body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: rgba(var(--gold-rgb), 0.25);
    color: var(--primary-dark);
}

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-spinner {
    width: 50px;
    height: 50px;
    position: relative;
    margin: 0 auto 18px;
}

.spinner-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: spinRing 1.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    inset: 0;
    border-top-color: var(--gold);
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    inset: 5px;
    border-top-color: var(--accent-light);
    animation-delay: -0.3s;
}

.spinner-ring:nth-child(3) {
    inset: 10px;
    border-top-color: rgba(255, 255, 255, 0.4);
    animation-delay: -0.15s;
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.preloader-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   HEADER TOP BAR
   ═══════════════════════════════════════════ */
.site-header {
    position: relative;
    z-index: 100;
}

.site-header .header-top {
    height: 48px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    font-size: 13px;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .header-top a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.site-header .header-top a:hover {
    color: var(--gold-light);
}

.header-top-right a {
    color: rgba(255, 255, 255, 0.5) !important;
    width: 30px;
    height: 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    transition: var(--transition);
}

.header-top-right a:hover {
    background: var(--gold);
    color: var(--primary-dark) !important;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--gold-rgb), 0.3);
}

/* ═══════════════════════════════════════════
   HEADER BOTTOM (NAVBAR)
   ═══════════════════════════════════════════ */
.header-bottom {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    height: 110px;
    z-index: 50;
    background: linear-gradient(180deg, rgba(13, 43, 69, 0.92) 0%, rgba(13, 43, 69, 0.6) 60%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.header-bottom.header-inner {
    position: relative;
    top: 0;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-bottom.scrolled {
    position: fixed;
    top: 0;
    height: 64px;
    background: rgba(13, 43, 69, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Logo */
.logo-box {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-box img {
    height: 80px;
    margin-top: -10px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.header-bottom.scrolled .logo-box img,
.header-bottom.header-inner .logo-box img {
    height: 42px;
    margin-top: 0;
}

/* Navigation */
.navs {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.navs .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navs .nav-link i {
    font-size: 9px;
    margin-left: 4px;
    transition: var(--transition);
}

.navs .nav-link:hover,
.navs .nav-link.active {
    color: var(--white);
}

/* Hover Bar Animation */
.hover-bar {
    position: relative;
}

.hover-bar::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.hover-bar:hover::before,
.hover-bar.active::before {
    width: 70%;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-top: 2px solid var(--gold);
}

.nav-item-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu-custom a {
    display: flex;
    align-items: center;
    padding: 11px 22px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.dropdown-menu-custom a:hover {
    background: var(--hover-bg);
    color: var(--accent);
    border-left-color: var(--gold);
    padding-left: 26px;
}

/* Header Actions */
.header-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 6px;
    transition: var(--transition);
}

.header-actions .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-1px);
}

.header-actions .btn-light {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 6px;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
    transition: var(--transition);
}

.header-actions .btn-light:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.mobile-toggle:hover {
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   MOBILE NAV (Bootstrap Offcanvas)
   ═══════════════════════════════════════════ */
.mobile-nav-links a {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* ═══════════════════════════════════════════
   HERO SLIDER / CAROUSEL
   ═══════════════════════════════════════════ */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    position: relative;
}

.hero-carousel .carousel-item:not(.active) {
    display: none;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    min-height: 500px;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(16, 48, 74, 0.6) 0%, rgba(16, 48, 74, 0.2) 50%, rgba(16, 48, 74, 0.4) 100%);
    z-index: 1;
}

.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 80%;
    max-width: 900px;
    color: var(--white);
}

.slider-text .slide-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
    line-height: 1.2;
}

.slider-text .slide-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 25px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
}

.slider-text .btn-slider {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.slider-text .btn-slider:hover {
    background: var(--white);
    color: var(--primary);
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    cursor: pointer;
    color: var(--white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════
   SLIDE MENU (QUICKBAR)
   ═══════════════════════════════════════════ */
.slide-menu {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1320px;
    z-index: 10;
    height: 110px;
}

.slide-menu .row {
    display: flex;
    height: 100%;
}

.qb-item {
    flex: 1;
    padding: 0;
}

.qb-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 20px;
    color: var(--white);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.qb-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.15);
    transition: height 0.3s ease;
}

.qb-item a:hover::after {
    height: 100%;
}

.qb-item a:hover {
    filter: brightness(1.1);
}

.qb-item i {
    font-size: 40px;
    opacity: 0.9;
}

.qb-item h6 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
}

.qb-item p {
    font-size: 12px;
    margin: 2px 0 0;
    opacity: 0.75;
}

.qb-1 {
    background: var(--qb-teal);
}

.qb-2 {
    background: var(--qb-slate);
}

.qb-3 {
    background: var(--qb-sky);
}

.qb-4 {
    background: var(--qb-navy);
}

.qb-5 {
    background: var(--qb-purple);
}

/* ═══════════════════════════════════════════
   PAGE BANNER (Inner Pages)
   ═══════════════════════════════════════════ */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    padding: 50px 0 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-light), var(--gold));
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-banner .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.page-banner .breadcrumb-item a:hover {
    color: var(--white);
}

.page-banner .breadcrumb-item.active {
    color: var(--white);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════ */
.section {
    padding: 70px 0;
}

.section-alt {
    background: #f8fafb;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent-light));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-body);
    font-size: 15px;
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header .btn-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    transition: var(--transition);
}

.section-header .btn-all:hover {
    background: var(--accent);
    color: var(--white);
}

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */

/* Announcement Card */
.announcement-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.announcement-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-left-color: var(--accent);
}

.announcement-card .card-date {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.announcement-card .card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.announcement-card .card-summary {
    font-size: 14px;
    color: var(--text-body);
    flex: 1;
}

.announcement-card .badge-pinned {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fef3cd;
    color: #856404;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Event Card */
.event-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.event-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.event-card .card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .card-img img {
    transform: scale(1.05);
}

.event-card .card-img .date-badge,
.event-card .card-img-placeholder .date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    text-align: center;
    z-index: 1;
}

.event-card .date-badge .day {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.event-card .date-badge .month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card .card-body h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.event-card .card-meta {
    font-size: 13px;
    color: var(--text-body);
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.event-card .card-meta i {
    color: var(--accent);
    width: 18px;
}

.event-card .card-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 48px;
    position: relative;
}

/* Campaign Card */
.campaign-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.campaign-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.campaign-card .card-img {
    height: 200px;
    overflow: hidden;
}

.campaign-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-card .card-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #0d7377 0%, #1a85b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 48px;
}

.campaign-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.campaign-card .card-body h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.campaign-card .card-body .desc {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.progress-bar-custom {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar-custom .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-light) 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

.campaign-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-body);
}

.campaign-stats strong {
    color: var(--primary);
}

/* Scholarship Card */
.scholarship-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.scholarship-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.scholarship-card .card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scholarship-card h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.scholarship-card .desc {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scholarship-card .scholarship-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 13px;
    color: var(--text-body);
}

.scholarship-card .scholarship-meta i {
    color: var(--accent);
    margin-right: 4px;
}

.scholarship-card .badge-open {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #d4edda;
    color: #155724;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 12px;
    align-self: flex-start;
}

.scholarship-card .badge-closed {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f8d7da;
    color: #721c24;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 12px;
    align-self: flex-start;
}

/* Album Card */
.album-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 250px;
}

.album-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover img {
    transform: scale(1.08);
}

.album-card .album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(16, 48, 74, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
}

.album-card .album-overlay h6 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.album-card .album-overlay span {
    font-size: 12px;
    opacity: 0.8;
}

.album-card-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 64px;
}

/* Board Member Card */
.member-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.member-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.member-card .card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.member-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-card .card-img-placeholder {
    height: 280px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 64px;
}

.member-card .card-body {
    padding: 20px;
}

.member-card .card-body h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.member-card .card-body .title {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-card .card-body .bio {
    font-size: 13px;
    color: var(--text-body);
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    padding: 60px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 70px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: var(--gold);
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-section .btn-cta:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--gold-rgb), 0.35);
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-info-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list li i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-form-card .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form-card .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 85, 122, 0.1);
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    padding: 12px 36px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ═══════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 200px;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 5px;
}

/* ═══════════════════════════════════════════
   CONTENT PAGE (Hakkımızda, etc.)
   ═══════════════════════════════════════════ */
.content-area {
    padding: 50px 0;
}

.content-area .content-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
}

.content-area .content-body h2,
.content-area .content-body h3,
.content-area .content-body h4 {
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-area .content-body img {
    border-radius: 8px;
    margin: 15px 0;
}

.content-area .content-body ul,
.content-area .content-body ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
/* Footer */
.site-footer {
    position: relative;
}

.footer-accent-border {
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-light), var(--gold));
}

.site-footer .footer-top {
    background: linear-gradient(180deg, var(--footer-bg) 0%, var(--footer-dark) 100%);
    padding: 60px 0 30px;
    color: var(--white);
    position: relative;
}

.site-footer .footer-heading {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 12px;
    position: relative;
}

.site-footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.site-footer .footer-links li a {
    color: var(--footer-text);
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: var(--transition-fast);
}

.site-footer .footer-links li a i {
    font-size: 10px;
    color: var(--gold);
    transition: var(--transition-fast);
}

.site-footer .footer-links li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.site-footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--footer-text);
    font-size: 14px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--gold-rgb), 0.1);
    border-radius: 8px;
    color: var(--gold);
    font-size: 14px;
}

.site-footer .footer-contact li a {
    color: var(--footer-text);
    transition: var(--transition-fast);
}

.site-footer .footer-contact li a:hover {
    color: var(--gold-light);
}

.site-footer .footer-brand .footer-logo {
    height: 55px;
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.site-footer .footer-brand p {
    color: var(--footer-text);
    font-size: 14px;
    line-height: 1.7;
}

.site-footer .footer-social {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.site-footer .footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: var(--footer-text);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .footer-social a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.3);
}

.site-footer .footer-bottom {
    background: var(--footer-bottom);
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credit {
    color: rgba(var(--gold-rgb), 0.5);
    font-style: italic;
    font-size: 12px;
}

/* ═══════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 48, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   FORM ALERTS
   ═══════════════════════════════════════════ */
.alert-custom {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.alert-custom.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.alert-custom.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ═══════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════ */
.text-accent {
    color: var(--accent) !important;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1399.98px) {
    .navs .nav-link {
        padding: 0 12px;
        font-size: 14px;
    }
}

@media (max-width: 1199.98px) {
    .header-bottom {
        height: 80px;
    }

    .logo-box img {
        height: 50px;
        margin-top: 0;
    }

    .slide-menu {
        width: 92%;
        height: 90px;
    }

    .qb-item a {
        padding: 16px 14px;
    }

    .qb-item i {
        font-size: 30px;
    }

    .qb-item h6 {
        font-size: 14px;
    }

    .qb-item p {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .slider-text .slide-title {
        font-size: 36px;
    }

    .hero-carousel .carousel-item img {
        height: 70vh;
        min-height: 350px;
    }

    .slide-menu {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .slide-menu .row {
        flex-wrap: wrap;
    }

    .qb-item {
        flex: 0 0 33.333%;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .stats-section .stat-item .stat-number {
        font-size: 32px;
    }

    .page-banner {
        padding: 40px 0 30px;
    }

    .page-banner h1 {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .slider-text .slide-title {
        font-size: 28px;
    }

    .slider-text .slide-subtitle {
        font-size: 15px;
    }

    .hero-carousel .carousel-item img {
        height: 50vh;
        min-height: 300px;
    }

    .qb-item {
        flex: 0 0 50%;
    }

    .qb-item:last-child {
        flex: 0 0 100%;
    }

    .section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .page-banner h1 {
        font-size: 22px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-item .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel .carousel-item img {
        height: 45vh;
        min-height: 250px;
    }

    .slider-text .slide-title {
        font-size: 22px;
    }

    .slider-text .btn-slider {
        padding: 10px 24px;
        font-size: 13px;
    }

    .qb-item {
        flex: 0 0 100%;
    }

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

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

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .header-top {
        display: none !important;
    }

    .header-bottom {
        top: 0;
    }
}