

/* CSS Variables - Color Theme from Logo */
:root {
    --primary-color: #1B4B6B;        /* Deep Blue from logo */
    --primary-dark: #0F3451;         /* Darker blue */
    --primary-light: #2A6A92;        /* Lighter blue */
    --secondary-color: #C9A227;      /* Gold from logo */
    --secondary-light: #E4BE4D;      /* Light gold */
    --accent-color: #D4AF37;         /* Golden accent */
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-light: #777777;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f2f5;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}



/* ============================================
   Top Bar
   ============================================ */
   .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom:-10px !important;
   }
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.top-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bologna-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.bologna-link:hover {
    background: var(--secondary-color);
}

.lang-switch {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px;
}

.lang-switch a {
    padding: 4px 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    border-radius: 16px;
    transition: var(--transition);
}

.lang-switch a.active,
.lang-switch a:hover {
    background: #fff;
    color: var(--primary-color);
}

/* ============================================
   Header
   ============================================ */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.university-name {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.college-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 8px;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    /*border-radius: var(--radius-sm);*/
    transition: var(--transition);
}

/*.nav-item > a:hover,*/
/*.nav-item.active > a {*/
/*    background: var(--bg-secondary);*/
/*    color: var(--primary-color);*/
/*}*/

/*.nav-item > a i {*/
/*    font-size: 10px;*/
/*    transition: var(--transition);*/
/*}*/

/*.nav-item:hover > a i {*/
/*    transform: rotate(180deg);*/
/*}*/

/* Mega Menu */
.nav-item.has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 600px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.mega-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mega-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
}

.mega-column ul li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.mega-column ul li a:hover {
    color: var(--primary-color);
    padding-right: 8px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-header img {
    height: 40px;
}

.close-mobile-nav {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-nav-list {
    padding: 20px;
}

.mobile-nav-list li a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 75, 107, 0.95) 0%, rgba(15, 52, 81, 0.85) 100%);
}

.hero .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-secondary {
    background: var(--primary-color);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding-right: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-item:first-child {
    border-right: none;
    padding-right: 0;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-header.light .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   News Section - Premium Layout
   ============================================ */
.news-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* News Grid - Bento Box Layout */
.news-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto;
    gap: 28px;
    align-items: start;
}

/* News Card Base */
.news-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(27, 75, 107, 0.06);
    display: block;
    position: relative;
    border: 1px solid rgba(27, 75, 107, 0.04);
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27, 75, 107, 0.12);
    border: 1px solid var(--primary-color);
}

/* Featured News - Hero Card */
.news-featured {
    position: relative;
}

.news-card.featured {
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.news-card.featured .news-image {
    position: absolute;
    inset: 0;
    height: 100%;
}

.news-card.featured .news-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(15, 52, 81, 0.95) 0%,
        rgba(15, 52, 81, 0.7) 35%,
        rgba(15, 52, 81, 0.2) 70%,
        transparent 100%
    );
    z-index: 1;
}

.news-card.featured .news-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 40px;
    color: #fff;
}

.news-card.featured .news-meta {
    color: rgba(255, 255, 255, 0.85);
}

.news-card.featured .news-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    margin-bottom: 16px;
}

.news-card.featured .news-category {
    background: var(--secondary-color);
    backdrop-filter: blur(10px);
}

.news-card.featured .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-light);
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: gap 0.3s ease;
}

.news-card.featured:hover .read-more {
    gap: 12px;
}

/* News Image */
.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

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

/* News Category Badge */
.news-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
    letter-spacing: 0.3px;
}

/* News Content */
.news-content {
    padding: 28px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.news-meta span {
    display: flow;
    align-items: center;
    gap: 8px;
}

.news-meta i {
    color: var(--secondary-color);
    font-size: 12px;
}

.news-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--secondary-color);
}

/* News List - Right Column */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

/* Horizontal News Cards */
.news-card.horizontal {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-radius: var(--radius-lg);
    min-height: 115px;
}

.news-card.horizontal .news-image {
    height: 100%;
    min-height: 115px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.news-card.horizontal .news-content {
      display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 16px;
    gap: 4px;
}

.news-card.horizontal .news-title {
    font-size: 14px;
    font-weight: 600;
    -webkit-line-clamp: 2;
    margin-bottom: 0;
    line-height: 1.65;
}

.news-card.horizontal .news-meta {
    gap: 14px;
    margin-bottom: 0;
    margin-top: auto;
    font-size: 12px;
}

.news-category-small {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 0;
    position: relative;
}

.news-category-small::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-left: 8px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .news-card.featured {
        min-height: 420px;
    }
    
    .news-card.featured .news-title {
        font-size: 22px;
    }
    
    .news-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .news-card.horizontal {
        grid-template-columns: 1fr;
        grid-template-rows: 180px auto;
    }
    
    .news-card.horizontal .news-image {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-list {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        min-height: 380px;
    }
    
    .news-card.featured .news-content {
        padding: 28px;
    }
    
    .news-card.featured .news-title {
        font-size: 20px;
    }
    
    .news-card.horizontal {
        grid-template-columns: 110px 1fr;
        grid-template-rows: auto;
        min-height: 100px;
    }
    
    .news-card.horizontal .news-image {
        min-height: 100px;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }
}

/* ============================================
   Events Section - Premium Slider Design
   ============================================ */
.events-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Slider Wrapper */
.events-slider-wrapper {
    position: relative;
    padding: 0 60px;
    margin: 0 -20px;
}

/* Navigation Buttons */
.events-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.events-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(27, 75, 107, 0.25);
}

.events-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.events-nav-prev {
    right: 0;
}

.events-nav-next {
    left: 0;
}

.events-nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Swiper Container */
.events-swiper {
    overflow: hidden;
    padding: 20px 0 60px;
}

.events-swiper .swiper-wrapper {
    align-items: stretch;
}

.events-swiper .swiper-slide {
    height: auto;
    opacity: 0.6;
    transform: scale(0.92);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.events-swiper .swiper-slide-active,
.events-swiper .swiper-slide-next,
.events-swiper .swiper-slide-prev {
    opacity: 1;
    transform: scale(1);
}

/* Modern Event Card */
.event-card-modern {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(27, 75, 107, 0.08);
    border: 1px solid rgba(27, 75, 107, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.event-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(27, 75, 107, 0.15);
    border-color: var(--primary-color);
}

/* Event Poster/Image */
.event-poster {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.event-card-modern:hover .event-poster img {
    transform: scale(1.1);
}

.event-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(15, 52, 81, 0.1) 70%,
        rgba(15, 52, 81, 0.4) 100%
    );
    transition: opacity 0.4s ease;
}

.event-card-modern:hover .event-poster-overlay {
    opacity: 0.8;
}

/* Event Badge */
.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
}

.event-card-modern:hover .event-badge {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

/* Event Info */
.event-info {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
}

.event-title-modern {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.event-card-modern:hover .event-title-modern {
    color: var(--primary-color);
}

/* Event Meta */
.event-meta-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.event-date-modern,
.event-views {
    display: flex;
    /* align-items: center; */
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.event-date-modern i,
.event-views i {
    font-size: 14px;
    color: var(--secondary-color);
}

.event-card-modern:hover .event-date-modern,
.event-card-modern:hover .event-views {
    color: var(--text-secondary);
}

/* Pagination */
.events-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.events-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.events-pagination .swiper-pagination-bullet:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}

.events-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

/* Responsive */
@media (max-width: 1200px) {
    .events-slider-wrapper {
        padding: 0 50px;
    }
    
    .events-nav {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .events-section {
        padding: 80px 0;
    }
    
    .events-slider-wrapper {
        padding: 0 40px;
    }
    
    .event-poster {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .events-section {
        padding: 60px 0;
    }
    
    .events-slider-wrapper {
        padding: 0;
        margin: 0;
    }
    
    .events-nav {
        display: none;
    }
    
    .events-swiper {
        padding: 10px 0 50px;
    }
    
    .events-swiper .swiper-slide {
        opacity: 1;
        transform: scale(1);
    }
    
    .event-poster {
        height: 220px;
    }
    
    .event-info {
        padding: 20px;
    }
    
    .event-title-modern {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .event-poster {
        height: 200px;
    }
    
    .event-badge {
        padding: 8px 16px;
        font-size: 11px;
        top: 16px;
        right: 16px;
    }
    
    .event-meta-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================
   Activities & Departments Section
   ============================================ */
.activities-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.activities-card,
.departments-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 20px 24px;
}

.card-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
}

.activities-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 24px;
}

.activity-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.activity-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-date {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.tab-month {
    font-size: 12px;
    color: var(--text-secondary);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 24px;
}

.department-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.department-item:hover,
.department-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
}

.dept-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 75, 107, 0.1);
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.department-item:hover .dept-icon,
.department-item.active .dept-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.department-item span {
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.about-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.about-card:hover {
    background: var(--primary-color);
    color: #fff;
}

.about-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.about-card:hover .about-card-icon {
    background: var(--secondary-color);
}

.about-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.about-objectives h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.objectives-list li i {
    color: var(--secondary-color);
    margin-top: 4px;
}

/* About Visual */
.visual-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.overlay-badge {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.overlay-year {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-number {
    position: absolute;
    top: -16px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-size: 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-list {
    margin-bottom: 20px;
}

.service-list li {
    position: relative;
    padding: 8px 0 8px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-list li::before {
    content: '';
    position: absolute;
    right: -12px;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.service-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 120px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Calendar Section
   ============================================ */
.calendar-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

.calendar-widget {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.calendar-title {
    font-size: 18px;
    font-weight: 700;
}

.cal-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.cal-nav:hover {
    background: var(--secondary-color);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding: 16px;
    background: var(--bg-secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 16px;
}

.calendar-days span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.calendar-days span:not(.empty):hover {
    background: var(--bg-secondary);
}

.calendar-days span.today {
    background: var(--primary-color);
    color: #fff;
}

.calendar-days span.empty {
    cursor: default;
}

.calendar-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.calendar-footer strong {
    color: var(--primary-color);
}

.calendar-info {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.calendar-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.calendar-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.calendar-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.event {
    background: var(--primary-color);
}

.legend-dot.exam {
    background: var(--secondary-color);
}

.legend-dot.holiday {
    background: #e74c3c;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 75, 107, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 24px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.lightbox-prev {
    right: 24px;
}

.lightbox-next {
    left: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
}

/* ============================================
   Staff Section
   ============================================ */
/* ============================================
   Staff Section - Modern Swiper Design
   ============================================ */
.staff-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.staff-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    clip-path:polygon(0 0, 100% 0, 100% 84%, 0 100%);
    z-index: 0;
}

.staff-section .container {
    position: relative;
    z-index: 1;
}

.staff-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.staff-section .section-title {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.staff-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.staff-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
}

/* Staff Slider Wrapper */
.staff-slider-wrapper {
    position: relative;
    padding: 20px 60px;
}

/* Staff Navigation Buttons */
.staff-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    font-size: 20px;
}

.staff-nav:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(27, 75, 107, 0.3);
}

.staff-nav-prev {
    right: 0;
}

.staff-nav-next {
    left: 0;
}

/* Staff Swiper Container */
.staff-swiper {
    padding: 20px 0 60px;
    overflow: visible;
}

.staff-swiper .swiper-slide {
    height: auto;
}

/* Modern Staff Card */
.staff-card-modern {
    display: block;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.staff-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 50%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.staff-card-modern:hover::before {
    transform: scaleX(1);
}

.staff-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Staff Image Wrapper */
.staff-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.staff-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.staff-card-modern:hover .staff-image-wrapper img {
    transform: scale(1.1);
}

/* Staff Badge */
.staff-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    z-index: 2;
}

/* Staff Overlay */
.staff-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(27, 75, 107, 0.95) 0%, 
        rgba(27, 75, 107, 0.7) 30%, 
        transparent 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: all 0.4s ease;
}

.staff-card-modern:hover .staff-overlay {
    opacity: 1;
}

/* Staff Social Links */
.staff-social-links {
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.staff-card-modern:hover .staff-social-links {
    transform: translateY(0);
}

.staff-social-links .social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.staff-social-links .social-link:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-4px) scale(1.1);
}

/* Staff Content */
.staff-content {
    padding: 14px;
    text-align: center;
    background: #fff;
}

.staff-name-modern {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.staff-position {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.staff-meta {
    margin-bottom: 12px;
}

.staff-university {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.staff-university i {
    color: var(--primary-color);
    font-size: 14px;
}

.staff-email-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    direction: ltr;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
    margin-top: 12px;
}

.staff-email-modern i {
    color: var(--primary-color);
}

/* Staff Pagination */
.staff-pagination {
    margin-top: 30px;
}

.staff-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-light);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.staff-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    width: 36px;
    border-radius: 6px;
}

/* Staff Section Footer */
.staff-section .section-footer {
    text-align: center;
    margin-top: 40px;
}

.staff-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(27, 75, 107, 0.3);
}

.staff-section .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 75, 107, 0.4);
}

/* Responsive Design for Staff Section */
@media (max-width: 1024px) {
    .staff-slider-wrapper {
        padding: 20px 50px;
    }
    
    .staff-nav {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .staff-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .staff-section {
        padding: 80px 0;
    }
    
    .staff-section::before {
        height: 250px;
    }
    
    .staff-slider-wrapper {
        padding: 10px 20px;
    }
    
    .staff-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .staff-nav-prev {
        right: -5px;
    }
    
    .staff-nav-next {
        left: -5px;
    }
    
    .staff-image-wrapper {
        height: 220px;
    }
    
    .staff-content {
        padding: 20px;
    }
    
    .staff-name-modern {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .staff-slider-wrapper {
        padding: 10px 0;
    }
    
    .staff-nav {
        display: none;
    }
    
    .staff-image-wrapper {
        height: 200px;
    }
    
    .staff-social-links .social-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a2840 100%);
    color: #fff;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links li a:hover {
    opacity: 1;
    padding-right: 8px;
    color: var(--secondary-color);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 2px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .mega-menu {
        width: 500px;
    }
    
    .mega-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        border-right: none;
        padding-right: 0;
    }
    
    .news-card.horizontal {
        grid-template-columns: 1fr;
    }
    
    .news-card.horizontal .news-image {
        height: 180px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .activities-tabs {
        grid-template-columns: 1fr;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .calendar-days-header span {
        font-size: 10px;
    }
    
    .calendar-days span {
        height: 32px;
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .hero,
    .mobile-nav,
    .back-to-top,
    .lightbox {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #DAA520;
        --text-primary: #000;
        --text-secondary: #333;
    }
}
