:root {
    --primary-red: #8B0000;
    --dark-red: #6B0000;
    --light-red: #B71C1C;
    --accent-red: #D32F2F;
    --support-green: #2E7D32;
    --support-blue: #1565C0;
    --support-orange: #E65100;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --white: #FFFFFF;
    --text-dark: #212121;
    --text-gray: #616161;
    --text-light: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
}

/* Top Info Bar */
.top-bar {
    background: var(--dark-red);
    padding: 0.6rem 0;
    font-size: 0.85rem;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    gap: 2rem;
}

.top-bar-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.top-bar-links a:hover {
    color: white;
}

/* Navigation */
nav {
    background: var(--primary-red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-red), var(--accent-red));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.logo-text .sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu>li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    display: block;
}

.nav-menu>li>a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown>a::after {
    content: '▾';
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-red);
    ;
    min-width: 280px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-red);
}

/* Dropdown Group */
.dropdown-group {
    padding: 0.8rem 1.5rem;
}

.dropdown-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.dropdown-group-items {
    list-style: none;
}

.dropdown-group-items li {
    margin: 0;
}

.dropdown-group-items a {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
}

.dropdown-divider {
    height: 1px;
    background: #E0E0E0;
    margin: 0.5rem 0;
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--light-red), var(--accent-red));
    color: white !important;
    padding: 0.7rem 2rem !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--light-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    opacity: 0.8;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-background {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05), transparent);
}

.slide-content {
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.slide-text {
    max-width: 700px;
    color: white;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    color: white;
}

.slide-description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
}

.slide-btn {
    display: inline-block;
    background: white;
    color: var(--primary-red);
    padding: 1.1rem 3.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    background: var(--bg-light);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #FFF3F3 0%, #FFF3F3 50%, #F5F5F5 50%, #F5F5F5 100%);
    padding: 2rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(139,0,0,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--dark-red), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Banner Section */
.hero-banner {
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--dark-red), var(--light-red));
    border-radius: 20px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.3);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.banner-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: white;
}

.banner-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.banner-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.banner-btn:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 90px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.countdown-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: capitalize;
}

/* Campus Selector */
.campus-selector {
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin: 2rem auto;
    max-width: 1200px;
}

.campus-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: none;
    background: var(--bg-light);
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 0.9rem;
}

.campus-btn.active,
.campus-btn:hover {
    background: var(--primary-red);
    color: white;
}

/* Info Cards Section */
.info-cards {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, var(--dark-red), var(--light-red));
    padding: 3rem;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.2);
}

.info-card.green {
    background: linear-gradient(135deg, #1B5E20, #43A047);
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.info-card-content {
    position: relative;
    z-index: 1;
}

.info-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.info-card p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.info-card-btn {
    background: white;
    color: var(--primary-red);
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s;
}

.info-card.green .info-card-btn {
    color: var(--support-green);
}

.info-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Recognition Section */
.recognition {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title h2 {
    color: var(--text-dark);
}
.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.recognition-grid {
    max-width: 1400px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.recognition-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.recognition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.15);
}

.recognition-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--dark-red), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.3);
    color: white;
}

.recognition-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.recognition-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Programs Section */
.programs {
    padding: 5rem 2rem;
    background: white;
}

.programs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.programs-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.program-finder {
    background: linear-gradient(135deg, var(--dark-red), var(--light-red));
    padding: 3rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.2);
}

.program-finder h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.program-finder p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.program-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.program-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.view-all-btn {
    background: white;
    color: var(--primary-red);
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.role-selector {
    background: linear-gradient(135deg, #1B5E20, #43A047);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.2);
}

.role-selector h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.role-selector p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.role-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.role-option {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.role-option:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

/* Campus Gallery */
.campus-gallery {
    padding: 5rem 2rem;
    background: var(--dark-red);
    color: white;
}
.campus-gallery h2 {
    color: var(--text-light);
}

.campus-grid {
    max-width: 1400px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.campus-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    background: #000;
}

.campus-video {
    width: 100%;
    height: 100%;
    border: none;
}

.campus-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    pointer-events: none;
}

.campus-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

/* Future Students Section */
.future-students {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: white;
}

.future-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.future-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.future-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.future-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.future-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.future-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.future-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-red), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.future-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.search-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box {
    background: white;
    border-radius: 30px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-dark);
}

.search-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

.search-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-select {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.find-btn {
    background: white;
    color: var(--primary-red);
    padding: 0.9rem 3rem;
    border-radius: 30px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.find-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* News & Events */
.news-events {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.news-section {
    background: linear-gradient(135deg, var(--dark-red), var(--light-red));
    padding: 3rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.2);
}

.news-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.news-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid white;
    transition: all 0.3s;
    cursor: pointer;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.news-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: white;
    line-height: 1.5;
}

.news-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date::before {
    content: '📅';
}

.news-excerpt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.events-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.events-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E0E0E0;
}

.event-date-box {
    background: linear-gradient(135deg, var(--dark-red), var(--accent-red));
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.event-day {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.event-month {
    font-size: 0.85rem;
    text-transform: uppercase;
}

.event-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Additional Content Cards */
.content-showcase {
    padding: 5rem 2rem;
    background: white;
}

.showcase-grid {
    max-width: 1400px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.showcase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.15);
}

.showcase-image {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-red), var(--accent-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.showcase-card:nth-child(2) .showcase-image {
    background: linear-gradient(135deg, var(--light-red), var(--accent-red));
}

.showcase-card:nth-child(3) .showcase-image {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
}

.showcase-content {
    padding: 1.5rem;
}

.showcase-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.showcase-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Partnership Section */
.partnership {
    padding: 5rem 2rem;
    background: white;
}

.partnership-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.partner-logo {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    min-height: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-placeholder {
    font-size: 2rem;
    color: var(--text-gray);
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--dark-red);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--light-red);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .countdown {
        justify-content: center;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-split {
        grid-template-columns: 1fr;
    }

    .campus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campus-card {
        height: 280px;
    }

    .future-container {
        grid-template-columns: 1fr;
    }

    .future-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .logo-text .main {
        font-size: 0.95rem;
    }

    .logo-text .sub {
        font-size: 0.7rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-red);
        flex-direction: column;
        padding: 2rem 1.5rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 0;
        align-items: stretch;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        padding: 1rem 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown>a::after {
        float: right;
    }

    .nav-cta-btn {
        margin-top: 1rem;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-description {
        font-size: 0.95rem;
    }

    .slide-btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-prev {
        left: 1rem;
    }

    .slider-next {
        right: 1rem;
    }

    .hero {
        padding: 1.5rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-banner {
        padding: 2rem 1.5rem;
    }

    .banner-text h2 {
        font-size: 1.8rem;
    }

    .banner-text p {
        font-size: 0.95rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .campus-selector {
        overflow-x: scroll;
        padding: 0.8rem 1rem;
    }

    .campus-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .info-cards {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .info-card h3 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .recognition-grid,
    .campus-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .campus-card {
        height: 250px;
    }

    .program-finder,
    .role-selector {
        padding: 2rem 1.5rem;
    }

    .program-finder h3,
    .role-selector h3 {
        font-size: 1.6rem;
    }

    .future-students {
        padding: 3rem 1.5rem;
    }

    .future-info h2 {
        font-size: 2rem;
    }

    .future-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .search-section {
        padding: 2rem 1.5rem;
    }

    .search-filters {
        flex-direction: column;
    }

    .news-events {
        padding: 3rem 1.5rem;
    }

    .news-section,
    .events-section {
        padding: 2rem 1.5rem;
    }

    .news-section h3,
    .events-section h3 {
        font-size: 1.6rem;
    }

    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-logo {
        padding: 1.5rem;
        min-height: 100px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .hero-slider {
        height: 350px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description {
        font-size: 0.9rem;
    }

    .slider-dots {
        bottom: 1rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 30px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .banner-text h2 {
        font-size: 1.5rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .recognition-badge {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
}


/* =========== BERITA SECTION =========== */ 
.berita-hero {
    background: linear-gradient(135deg, var(--dark-red), var(--light-red));
    padding: 5rem 2rem 4.5rem;
    min-height: 83vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.berita-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.berita-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.berita-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.berita-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.55rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.2rem;
}

.berita-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.berita-hero-highlight {
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.75));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.berita-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Berita Filter & Search --- */
.berita-filter-section {
    background: var(--bg-white);
    padding: 2rem 2rem 0;
    margin: 10px;
    position: relative;
    z-index: 2;
}

.berita-filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.berita-search-wrap {
    width: 100%;
    max-width: 600px;
}

.berita-search-box {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 2px solid #E0E0E0;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    gap: 0.8rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.berita-search-box:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.12);
}

.berita-search-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.berita-search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: 'Open Sans', sans-serif;
}

.berita-search-input::placeholder {
    color: var(--text-gray);
}

/* Category Buttons */
.berita-category-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    padding-bottom: 1.5rem;
}

.berita-cat-btn {
    padding: 0.55rem 1.6rem;
    border-radius: 25px;
    border: 2px solid #E0E0E0;
    background: var(--bg-white);
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.berita-cat-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.berita-cat-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

/* --- Berita Listing --- */
.berita-listing {
    padding: 2rem 2rem 5rem;
    background: var(--bg-light);
}

.berita-listing-container {
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

/* --- Berita Grid --- */
.berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- Berita Card --- */
.berita-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.berita-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(139, 0, 0, 0.15);
}

/* Card Image */
.berita-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.berita-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.berita-card:hover .berita-card-img {
    transform: scale(1.06);
}

.berita-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-red), var(--light-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

/* Kategori Badge */
.berita-card-kategori {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Body */
.berita-card-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.berita-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.berita-card-date,
.berita-card-author {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

.berita-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.berita-card-title-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.berita-card-title-link:hover {
    color: var(--primary-red);
}

.berita-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.2rem;
}

.berita-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap 0.3s, color 0.3s;
    margin-top: auto;
}

.berita-card-readmore:hover {
    gap: 0.6rem;
    color: var(--dark-red);
}

.berita-card-readmore span {
    font-size: 1.2rem;
    line-height: 1;
}

/* --- Empty State --- */
.berita-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.berita-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.2rem;
}

.berita-empty h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-family: 'Montserrat', sans-serif;
}

.berita-empty p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* --- Pagination --- */
.berita-pagination-wrap {
    margin-top: 3.5rem;
    text-align: center;
    background: var(--bg-white) !important;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

/* Override kalau parent layout punya background merah */
.berita-listing,
.berita-filter-section {
    background: var(--bg-light) !important;
}

.berita-filter-section {
    background: var(--bg-white) !important;
}

.berita-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.berita-page-item {
    display: flex;
}

.berita-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 2px solid #E0E0E0;
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
    font-family: 'Open Sans', sans-serif;
}

.berita-page-link:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(139, 0, 0, 0.05);
}

.berita-page-item.active .berita-page-link {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.berita-page-item.disabled .berita-page-link {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Prev / Next arrows: lebih lebar */
.berita-page-item:first-child .berita-page-link,
.berita-page-item:last-child .berita-page-link {
    width: 48px;
    font-size: 1.3rem;
    font-weight: 300;
}

.berita-page-info {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* --- Animasi Card Masuk --- */
@keyframes beritaFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.berita-card {
    animation: beritaFadeIn 0.45s ease both;
}

/* stagger animasi: card ke-1, ke-2, ke-3, dst */
.berita-card:nth-child(1) {
    animation-delay: 0.05s;
}

.berita-card:nth-child(2) {
    animation-delay: 0.12s;
}

.berita-card:nth-child(3) {
    animation-delay: 0.19s;
}

.berita-card:nth-child(4) {
    animation-delay: 0.26s;
}

.berita-card:nth-child(5) {
    animation-delay: 0.33s;
}

.berita-card:nth-child(6) {
    animation-delay: 0.40s;
}

/* ========== Responsive: Berita ========== */

@media (max-width: 1024px) {
    .berita-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .berita-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .berita-hero {
        padding: 3rem 1.5rem 2.5rem;
    }

    .berita-hero-title {
        font-size: 1.8rem;
    }

    .berita-hero-desc {
        font-size: 0.95rem;
    }

    .berita-filter-section {
        padding: 1.5rem 1rem 0;
    }

    .berita-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .berita-listing {
        padding: 1.5rem 1rem 4rem;
    }

    .berita-card-image {
        height: 180px;
    }

    .berita-category-wrap {
        gap: 0.5rem;
    }

    .berita-cat-btn {
        padding: 0.45rem 1.2rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .berita-hero-title {
        font-size: 1.5rem;
    }

    .berita-hero-badge {
        font-size: 0.78rem;
        padding: 0.45rem 1rem;
    }

    .berita-card-image {
        height: 160px;
    }

    .berita-card-body {
        padding: 1.2rem;
    }

    .berita-card-title {
        font-size: 1rem;
    }

    .berita-page-link {
        width: 36px;
        height: 36px;
        font-size: 0.88rem;
    }

    .berita-page-item:first-child .berita-page-link,
    .berita-page-item:last-child .berita-page-link {
        width: 42px;
    }
}

/* =========== DETAIL BERITA SECTION =========== */
.detail-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.detail-hero-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.detail-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.detail-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.detail-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.detail-content-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.detail-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.detail-main-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.article-body h2, 
.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.detail-share-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.share-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-twitter:hover {
    background: #0d8bd9;
    transform: translateY(-2px);
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.share-email {
    background: #6c757d;
    color: white;
}

.share-email:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-widget-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-post {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-light);
}

.sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.sidebar-post-title a:hover {
    color: var(--primary-red);
}

.sidebar-post-date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.detail-related-section {
    padding: 4rem 2rem;
    background: white;
}

.detail-related-container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.15);
}

.related-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-card:hover .related-card-image img {
    transform: scale(1.06);
}

.related-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-red), var(--light-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.related-card-kategori {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.related-card-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.related-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.related-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.related-card-title a:hover {
    color: var(--primary-red);
}

.related-card-readmore {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s;
}

.related-card-readmore:hover {
    gap: 0.6rem;
}

.related-card-readmore span {
    font-size: 1.2rem;
    line-height: 1;
}

/* Responsive Detail */
@media (max-width: 992px) {
    .detail-content-container {
        grid-template-columns: 1fr;
    }

    .detail-hero-title {
        font-size: 2rem;
    }

    .detail-main-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .detail-hero {
        padding: 2rem 1.5rem;
    }

    .detail-hero-title {
        font-size: 1.6rem;
    }

    .detail-hero-meta {
        font-size: 0.85rem;
        gap: 1rem;
    }

    .detail-content-section {
        padding: 2rem 1rem;
    }

    .detail-main-content {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .article-body {
        font-size: 1rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .detail-hero-title {
        font-size: 1.4rem;
    }

    .detail-breadcrumb {
        font-size: 0.8rem;
    }

    .detail-main-content {
        padding: 1.2rem;
    }

    .article-body {
        font-size: 0.95rem;
    }
}

/* =================================
   FILE SECTION - Document Download Page
   ================================= */

/* File Hero Section */
.file-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.file-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/storage/slider/pasca.webp') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.file-hero .container {
    position: relative;
    z-index: 1;
}

.file-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.file-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* File Section Container */
.file-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.file-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Filter Container */
.file-filter-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}

.file-filter-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Search Box */
.file-search-box-wrapper {
    position: relative;
    width: 100%;
}

.file-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.file-search-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.file-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
    width: 20px;
    height: 20px;
}

/* Filter Selects */
.file-filter-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 1rem;
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-filter-select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

/* Active Filters */
.file-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-red);
    color: var(--text-light);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-tag button {
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    transition: opacity 0.2s ease;
}

.filter-tag button:hover {
    opacity: 0.7;
}

.file-clear-all-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-red);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-clear-all-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

/* File Grid */
.file-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* File Card */
.file-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.file-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.15);
}

.file-card-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.file-card-icon i {
    font-size: 4rem;
    color: var(--white);
}

.file-card-icon svg {
    stroke: white;
}

.file-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.file-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.file-category-badge,
.file-prodi-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.file-category-badge {
    background: var(--light-red);
    color: var(--text-light);
}

.file-prodi-badge {
    background: #E3F2FD;
    color: #1976D2;
}

.file-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.file-card-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.file-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #F0F0F0;
    margin-top: auto;
}

.file-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.file-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--primary-red);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.file-card-btn:hover {
    background: var(--dark-red);
    transform: translateX(3px);
    color: var(--text);
}

/* No Data State */
.file-no-data {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.file-no-data i {
    font-size: 4rem;
    color: var(--text-gray);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.file-no-data h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.file-no-data p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Pagination */
.file-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.file-pagination-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-page-btn,
.file-page-num {
    padding: 0.75rem 1.25rem;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-width: 45px;
    text-align: center;
    display: inline-block;
}

.file-page-btn {
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.file-page-btn:hover:not(.disabled) {
    background: var(--primary-red);
    color: var(--white);
}

.file-page-btn.disabled {
    background: #F5F5F5;
    color: #BDBDBD;
    border-color: #E0E0E0;
    cursor: not-allowed;
}

.file-page-num:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.file-page-num.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    font-weight: 600;
}

.file-page-dots {
    padding: 0.75rem 0.5rem;
    color: var(--text-gray);
}

/* Search and Filter Focus States */
#searchInput:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

#categoryFilter:focus,
#prodiFilter:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

#categoryFilter:hover,
#prodiFilter:hover {
    border-color: var(--primary-red);
}

/* Filter Tag Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-tag {
    animation: slideIn 0.3s ease;
}

/* File Card Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-card {
    animation: fadeIn 0.4s ease;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .file-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .file-hero {
        padding: 6rem 0 3rem;
    }

    .file-hero h1 {
        font-size: 2rem;
    }

    .file-hero p {
        font-size: 1rem;
    }

    .file-section {
        padding: 3rem 0;
    }

    .file-filter-container {
        padding: 1.5rem;
    }

    .file-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .file-card-icon {
        padding: 2rem;
        min-height: 120px;
    }

    .file-card-icon i {
        font-size: 3rem;
    }

    .file-pagination-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .file-page-btn,
    .file-page-num {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .file-hero h1 {
        font-size: 1.75rem;
    }

    .file-filter-container {
        padding: 1rem;
    }

    .file-card-content {
        padding: 1rem;
    }

    .file-card-title {
        font-size: 1rem;
    }

    .file-card-description {
        font-size: 0.85rem;
    }
}

/* =========== PRODI SECTION =========== */

/* Prodi Hero Section */
.prodi-hero {
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 65vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prodi-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.prodi-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.prodi-hero-content {
    margin-bottom: 0;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.prodi-hero-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.prodi-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.prodi-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Prodi Stats */
.prodi-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.prodi-stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.prodi-stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.prodi-stat-item:hover .prodi-stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.prodi-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.prodi-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.prodi-stat-item:hover .prodi-stat-label {
    color: var(--white);
    font-weight: 700;
}

/* Prodi Vision & Mission Section */
.prodi-vision-section {
    padding: 2rem 2rem 3rem;
    background: var(--white);
}

.prodi-vision-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.prodi-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.prodi-vision-card,
.prodi-mission-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.prodi-vision-card {
    border: 2px solid var(--text-dark);
}

.prodi-mission-card {
    border: 2px solid var(--primary-red);
}

.prodi-vision-card:hover,
.prodi-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.prodi-vision-card:hover .vision-icon,
.prodi-mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(196, 30, 58, 0.1));
}

.vision-icon,
.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.vision-icon svg,
.mission-icon svg {
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.prodi-vision-card:hover .vision-icon svg,
.prodi-mission-card:hover .mission-icon svg {
    transform: scale(1.1);
}

.vision-title,
.mission-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.mission-title {
    color: var(--primary-red);
}

.vision-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mission-item:hover {
    background: rgba(196, 30, 58, 0.05);
    transform: translateX(5px);
    padding-left: 1rem;
}

.mission-number {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mission-item:hover .mission-number {
    transform: scale(1.2);
}

.mission-text {
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.mission-item:hover .mission-text {
    color: var(--primary-red);
    font-weight: 500;
}

/* Prodi Curriculum Section */
.prodi-curriculum-section {
    padding: 2rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.prodi-curriculum-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.prodi-curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.curriculum-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-red);
    position: relative;
}

.curriculum-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.curriculum-card-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.curriculum-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-red);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.curriculum-badge.pilihan {
    background: #2563eb;
}

.curriculum-badge.kompetensi {
    background: #16a34a;
}

.curriculum-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.curriculum-card:hover .curriculum-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
}

.curriculum-icon.pilihan {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    color: #2563eb;
}

.curriculum-card:hover .curriculum-icon.pilihan {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.curriculum-icon.kompetensi {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0.05));
    color: #16a34a;
}

.curriculum-card:hover .curriculum-icon.kompetensi {
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.2);
}

.curriculum-icon svg {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.curriculum-card:hover .curriculum-icon svg {
    transform: scale(1.1);
}

.curriculum-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-item {
    padding: 0.8rem;
    margin: 0 -0.8rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.curriculum-item:hover {
    background: rgba(196, 30, 58, 0.05);
    padding-left: 1.2rem;
    transform: translateX(5px);
}

.curriculum-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-red);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.curriculum-item:hover svg {
    transform: scale(1.2) rotate(360deg);
}

.curriculum-item:last-child {
    border-bottom: none;
}

.curriculum-item.empty {
    color: var(--text-gray);
    font-style: italic;
    justify-content: center;
}

/* Prodi Career Section */
.prodi-career-section {
    padding: 2rem 2rem 3rem;
    background: var(--white);
}

.prodi-career-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.prodi-career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.career-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    cursor: pointer;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(196, 30, 58, 0.3);
}

.career-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.career-card:hover .career-icon {
    transform: scale(1.15) rotate(-10deg);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(196, 30, 58, 0.1));
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.career-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.career-card:hover .career-title {
    color: var(--primary-red);
    transform: translateX(5px);
}

.career-desc {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Prodi Facility Section */
.prodi-facility-section {
    padding: 2rem 2rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.prodi-facility-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.prodi-facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.facility-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.facility-card.empty {
    color: var(--text-gray);
    font-style: italic;
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.facility-card:hover .facility-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(196, 30, 58, 0.1));
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.3);
}

.facility-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-title {
    color: var(--primary-red);
}

.facility-desc {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Prodi CTA Section */
.prodi-cta-section {
    padding: 2rem 2rem 5rem;
    background: var(--white);
}

.prodi-cta-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.prodi-cta-card {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn.primary {
    background: var(--bg-white);
    color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--primary-red);
        color: var(--text-light);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-light);
    border: 3px solid var(--text-light);
}

.cta-btn.secondary:hover {
    transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-white);
    color: var(--primary-red);
}

/* Responsive Design for Prodi Section */
@media (max-width: 1200px) {
    .prodi-hero-title {
        font-size: 2.5rem;
    }

    .prodi-curriculum-grid,
    .prodi-career-grid,
    .prodi-facility-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .prodi-hero {
        min-height: 450px;
    }

    .prodi-hero .container {
        padding: 3rem 1.5rem;
    }

    .prodi-hero-title {
        font-size: 2.2rem;
    }

    .prodi-hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .prodi-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .prodi-stat-number {
        font-size: 2.5rem;
    }

    .prodi-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .prodi-curriculum-grid,
    .prodi-career-grid,
    .prodi-facility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prodi-cta-card {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .prodi-hero {
        min-height: 400px;
    }

    .prodi-hero .container {
        padding: 2.5rem 1.5rem;
    }

    .prodi-hero-title {
        font-size: 1.8rem;
    }

    .prodi-hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1rem;
    }

    .prodi-hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .prodi-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prodi-stat-number {
        font-size: 2rem;
    }

    .prodi-vision-card,
    .prodi-mission-card {
        padding: 1.5rem;
    }

    .vision-title,
    .mission-title {
        font-size: 1.5rem;
    }

    .curriculum-card,
    .career-card,
    .facility-card {
        padding: 1.5rem;
    }

    .curriculum-title,
    .career-title,
    .facility-title {
        font-size: 1.3rem;
    }

    .prodi-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

/* =========== SEJARAH SECTION =========== */

/* Sejarah Content Section */
.sejarah-content-section {
    padding: 2rem 2rem 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.sejarah-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Icon Header */
.sejarah-icon-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sejarah-icon-box {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.sejarah-icon {
    font-size: 5rem;
}

/* Content Card */
.sejarah-content-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
    border-left: 5px solid var(--primary-red);
    transition: all 0.4s ease;
}

.sejarah-content-card:hover {
    box-shadow: 0 15px 50px rgba(196, 30, 58, 0.15);
    transform: translateY(-5px);
}

.sejarah-text {
    line-height: 2.2;
    color: var(--text-dark);
    font-size: 1.1rem;
    text-align: justify;
}

.sejarah-text p {
    margin-bottom: 1.5rem;
}

/* Achievement Section */
.sejarah-achievement-section {
    margin-top: 4rem;
}

.sejarah-achievement-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.sejarah-achievement-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.sejarah-achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.sejarah-achievement-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.sejarah-achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
    border-color: rgba(196, 30, 58, 0.3);
}

.achievement-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.sejarah-achievement-card:hover .achievement-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(196, 30, 58, 0.1));
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.achievement-icon {
    font-size: 2.8rem;
}

.achievement-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.sejarah-achievement-card:hover .achievement-title {
    transform: translateX(3px);
}

.achievement-desc {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Sejarah */
@media (max-width: 768px) {
    .sejarah-content-section {
        padding: 2rem 1.5rem 3rem;
    }

    .sejarah-icon-box {
        width: 110px;
        height: 110px;
    }

    .sejarah-icon {
        font-size: 4rem;
    }

    .sejarah-content-card {
        padding: 2rem;
    }

    .sejarah-text {
        font-size: 1rem;
        line-height: 2;
    }

    .sejarah-achievement-title {
        font-size: 2rem;
    }

    .sejarah-achievement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sejarah-icon-box {
        width: 90px;
        height: 90px;
    }

    .sejarah-icon {
        font-size: 3rem;
    }

    .sejarah-content-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .sejarah-text {
        font-size: 0.95rem;
        line-height: 1.8;
        text-align: left;
    }

    .sejarah-achievement-title {
        font-size: 1.8rem;
    }

    .sejarah-achievement-card {
        padding: 2rem 1.5rem;
    }

    .achievement-title {
        font-size: 1.2rem;
    }
}

/* =========== VISI MISI SECTION =========== */

/* Visi Misi Content Section */
.visimisi-content-section {
    padding: 2rem 2rem 5rem;
    background: var(--white);
}

.visimisi-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.visimisi-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.visimisi-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
}

.visimisi-icon-circle.visi {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

.visimisi-icon-circle.misi {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(196, 30, 58, 0.6);
    }
}

.visimisi-icon {
    font-size: 4rem;
}

.visimisi-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.visimisi-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Visi Section */
.visimisi-visi-section {
    margin-bottom: 5rem;
}

.visimisi-visi-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.03), rgba(196, 30, 58, 0.08));
    border-radius: 20px;
    padding: 4rem 3rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(196, 30, 58, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.visimisi-visi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.15);
    border-color: rgba(196, 30, 58, 0.3);
}

.visi-quote-icon {
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.visi-quote-icon.closing {
    margin-top: 1rem;
    margin-bottom: 0;
}

.visi-text {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* Misi Section */
.visimisi-misi-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
}

.visimisi-misi-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.visimisi-misi-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.visimisi-misi-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-red), var(--dark-red));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.visimisi-misi-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
    border-color: rgba(196, 30, 58, 0.3);
}

.visimisi-misi-card:hover::before {
    transform: scaleY(1);
}

.misi-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
    transition: all 0.4s ease;
}

.visimisi-misi-card:hover .misi-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.5);
}

.misi-content {
    flex: 1;
    position: relative;
    padding-top: 0.5rem;
}

.misi-connector {
    position: absolute;
    left: -2rem;
    top: 35px;
    width: 1.5rem;
    height: 2px;
    background: rgba(196, 30, 58, 0.2);
}

.misi-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0;
    text-align: justify;
}

/* CTA Section */
.visimisi-cta-section {
    margin-top: 4rem;
}

.visimisi-cta-card {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.visimisi-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Responsive Visi Misi */
@media (max-width: 768px) {
    .visimisi-content-section {
        padding: 2rem 1.5rem 3rem;
    }

    .visimisi-icon-circle {
        width: 100px;
        height: 100px;
    }

    .visimisi-icon {
        font-size: 3.5rem;
    }

    .visimisi-section-title {
        font-size: 2rem;
    }

    .visimisi-visi-card {
        padding: 3rem 2rem;
    }

    .visi-text {
        font-size: 1.2rem;
        line-height: 1.8;
    }

    .visimisi-misi-card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .misi-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .misi-connector {
        display: none;
    }

    .misi-text {
        font-size: 1rem;
        text-align: left;
    }

    .visimisi-cta-card {
        padding: 3rem 2rem;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .visimisi-icon-circle {
        width: 80px;
        height: 80px;
    }

    .visimisi-icon {
        font-size: 3rem;
    }

    .visimisi-section-title {
        font-size: 1.8rem;
    }

    .visimisi-visi-card {
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
    }

    .visi-quote-icon {
        font-size: 3rem;
    }

    .visi-text {
        font-size: 1.1rem;
    }

    .visimisi-misi-section {
        padding: 2rem 1.5rem;
    }

    .visimisi-misi-card {
        padding: 1.5rem;
    }

    .misi-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .visimisi-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-icon {
        font-size: 3rem;
    }

    .cta-heading {
        font-size: 1.8rem;
    }
}


/* ============================================
   TENAGA PENGAJAR SECTION
============================================ */

/* Hero Section */
.pengajar-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../../assetLanding/images/hero/beranda1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pengajar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.pengajar-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.pengajar-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pengajar-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pengajar-hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

.pengajar-content-section {
    background: var(--white);
    padding: 4rem 2rem;
    overflow-x: hidden;
    box-sizing: border-box;
}

.pengajar-content-section .container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.pengajar-group {
    margin-bottom: 4rem;
}

.pengajar-group:last-child {
    margin-bottom: 0;
}

.pengajar-group-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.pengajar-group-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    border-radius: 2px;
}

.pengajar-group-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.pengajar-group-header:hover .pengajar-group-icon {
    transform: scale(1.1) rotate(5deg);
}

.pengajar-group-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0;
}

/* Grid Layouts */
.pengajar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 100%;
    width: 100%;
}

/* Limit to max 3 columns on large screens */
@media (min-width: 1200px) {
    .pengajar-grid {
        grid-template-columns: repeat(3, minmax(320px, 1fr));
    }
}

.pengajar-grid.leadership {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    justify-items: center;
}

@media (min-width: 1200px) {
    .pengajar-grid.leadership {
        grid-template-columns: repeat(3, minmax(340px, 1fr));
    }
}

/* Center when few items */
.pengajar-grid:has(.pengajar-card:nth-child(1):nth-last-child(1)),
.pengajar-grid:has(.pengajar-card:nth-child(2):nth-last-child(1)),
.pengajar-grid:has(.pengajar-card:nth-child(3):nth-last-child(1)) {
    justify-content: center;
}

.pengajar-grid:has(.pengajar-card:nth-child(1):nth-last-child(1)) {
    grid-template-columns: minmax(280px, 380px);
}

.pengajar-grid.leadership:has(.pengajar-card:nth-child(1):nth-last-child(1)) {
    grid-template-columns: minmax(320px, 420px);
}

.pengajar-grid:has(.pengajar-card:nth-child(2):nth-last-child(1)) {
    grid-template-columns: repeat(2, minmax(280px, 380px));
}

.pengajar-grid.leadership:has(.pengajar-card:nth-child(2):nth-last-child(1)) {
    grid-template-columns: repeat(2, minmax(320px, 420px));
}

.pengajar-grid:has(.pengajar-card:nth-child(3):nth-last-child(1)) {
    grid-template-columns: repeat(3, minmax(280px, 360px));
}

.pengajar-grid.leadership:has(.pengajar-card:nth-child(3):nth-last-child(1)) {
    grid-template-columns: repeat(3, minmax(320px, 380px));
}

/* Pengajar Card */
.pengajar-card {
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    box-sizing: border-box;
}

.pengajar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pengajar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.2);
}

.pengajar-card:hover::before {
    transform: scaleX(1);
}

.pengajar-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pengajar-card-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.pengajar-card:hover .pengajar-card-image img {
    transform: scale(1.05);
}

.pengajar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
}

.pengajar-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.4s ease;
}

.pengajar-card:hover .pengajar-badge {
    transform: translateY(0);
    opacity: 1;
}

.pengajar-card-content {
    padding: 1.5rem;
}

.pengajar-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.pengajar-nip {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0 0 0.75rem 0;
    font-family: 'Courier New', monospace;
}

.pengajar-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Empty State */
.pengajar-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.pengajar-empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.pengajar-empty-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .pengajar-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .pengajar-grid.leadership {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 900px) {
    .pengajar-grid,
    .pengajar-grid.leadership {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 650px) {
    .pengajar-grid,
    .pengajar-grid.leadership {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
    
    .pengajar-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pengajar-hero {
        min-height: 50vh;
    }
    
    .pengajar-hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .pengajar-hero-title {
        font-size: 2.2rem;
    }
    
    .pengajar-hero-desc {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .pengajar-content-section {
        padding: 3rem 1rem;
    }
    
    .pengajar-content-section .container {
        padding: 0 0.5rem;
    }
    
    .pengajar-group {
        margin-bottom: 3rem;
    }
    
    .pengajar-group-header {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .pengajar-group-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .pengajar-grid,
    .pengajar-grid.leadership {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        width: 100%;
    }
    
    .pengajar-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pengajar-placeholder {
        font-size: 3rem;
    }
    
    .pengajar-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .pengajar-card-content {
        padding: 1.25rem;
    }
    
    .pengajar-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .pengajar-hero {
        min-height: 45vh;
    }
    
    .pengajar-hero-content {
        padding: 1.5rem 1rem;
    }
    
    .pengajar-hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .pengajar-hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .pengajar-hero-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .pengajar-content-section {
        padding: 2rem 0.75rem;
    }
    
    .pengajar-group {
        margin-bottom: 2.5rem;
    }
    
    .pengajar-group-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .pengajar-group-title {
        font-size: 1.35rem;
    }
    
    .pengajar-group-header::after {
        width: 60px;
    }
    
    .pengajar-grid,
    .pengajar-grid.leadership {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pengajar-card {
        max-width: 100%;
    }
    
    .pengajar-card-content {
        padding: 1.25rem;
    }
    
    .pengajar-name {
        font-size: 1.05rem;
    }
    
    .pengajar-nip {
        font-size: 0.85rem;
    }
    
    .pengajar-desc {
        font-size: 0.9rem;
    }
    
    .pengajar-placeholder {
        font-size: 2.8rem;
    }
    
    .pengajar-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
        bottom: 8px;
        left: 8px;
        right: 8px;
    }
    
    .pengajar-empty {
        padding: 3rem 1.5rem;
    }
    
    .pengajar-empty-icon {
        font-size: 4rem;
    }
    
    .pengajar-empty-text {
        font-size: 1rem;
    }
}


/* kerja sama section  */
/* ========== KERJA SAMA SECTION ========== */
.kerjasama-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tab Navigation */
.kerjasama-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.kerjasama-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.kerjasama-tab i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.kerjasama-tab:hover {
    background: rgba(196, 30, 58, 0.1);
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.kerjasama-tab:hover i {
    transform: scale(1.2);
}

.kerjasama-tab.active {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

.kerjasama-tab.active:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.partner-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
    border-color: rgba(196, 30, 58, 0.2);
}

.partner-card.hidden {
    display: none;
}

.partner-logo {
    width: 120px;
    height: 120px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 3px solid #F0F0F0;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-info {
    width: 100%;
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: var(--primary-red);
}

.partner-type {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary-red);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Statistics Section */
.kerjasama-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(196, 30, 58, 0.02));
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    border: 2px solid rgba(196, 30, 58, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    transform: rotateY(180deg);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin: 0;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .kerjasama-tabs {
        gap: 0.8rem;
    }

    .kerjasama-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .kerjasama-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .kerjasama-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .kerjasama-tab {
        justify-content: center;
        width: 100%;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .kerjasama-stats {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .kerjasama-tab span {
        font-size: 0.85rem;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
    }

    .partner-name {
        font-size: 1.1rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}