/* Reset dan Styling Umum */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    scroll-behavior: smooth;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover; /* Menjaga aspek rasio dan memotong jika perlu */
    padding: 3px; /* Ruang tambahan jika perlu */
}

.logo h2 {
    color: #11225B;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
}


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

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #FFAF00;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFAF00;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #11225B;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #11225B;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.university-tagline {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #FFAF00;
    font-weight: 500;
}


.cta-button {
    display: inline-block;
    background-color: #FFAF00;
    color: #11225B;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #11225B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #11225B;
    position: relative;
}

.about-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFAF00;
}

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

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555555;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    max-width: 300px; /* Batasi lebar maksimum */
    max-height: 200px; /* Batasi tinggi maksimum */
    height: auto; /* Biarkan tinggi menyesuaikan */
    object-fit: contain; /* Tampilkan gambar secara utuh */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Pusatkan gambar */
    display: block; /* Pastikan properti margin bekerja */
}

.more-info {
    display: inline-block;
    margin-top: 15px;
    color: #FFAF00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.more-info:hover {
    color: #11225B;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #11225B;
    position: relative;
}

.gallery-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFAF00;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.view-more {
    text-align: center;
    margin-top: 30px;
}

/* Contact Preview Section */
.contact-preview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.contact-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #11225B;
    position: relative;
}

.contact-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFAF00;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    color: #11225B;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555555;
    font-size: 1.1rem;
}

.contact-person {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #FFAF00;
    transition: transform 0.3s ease;
}

.contact-person:hover {
    transform: translateY(-3px);
}

.contact-person h4 {
    color: #FFAF00;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #11225B;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-btn:hover {
    background-color: #FFAF00;
    color: #11225B;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    color: #11225B;
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
    color: #333333;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFAF00;
}

.submit-btn {
    width: 100%;
    background-color: #11225B;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background-color: #FFAF00;
    color: #11225B;
}

/* Full Page Styles */
/* About Full Page */
.about-full {
    padding: 100px 0 50px;
    background-color: #FFFFFF;
}

.about-full h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #11225B;
    position: relative;
}

.about-full h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFAF00;
}


.about-full h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #11225B;
}

.about-full h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #FFAF00;
}

.about-full p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555555;
}

.about-full ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-full li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555;
}

.about-image-large img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-large {
    margin-top: -600px;
}

/* Gallery Full Page */
.gallery-full {
    padding: 100px 0 50px;
    background-color: #FFFFFF;
}

.gallery-full h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #11225B;
    position: relative;
}

.gallery-full h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFAF00;
}

.gallery-full p {
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    font-size: 1.1rem;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item-large {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item-large:hover {
    transform: translateY(-5px);
}

.gallery-item-large img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    padding: 20px;
    background-color: white;
}

.gallery-caption h3 {
    color: #11225B;
    margin-bottom: 10px;
}

.gallery-caption p {
    color: #555555;
}

/* Contact Full Page */
.contact-full {
    padding: 100px 0 50px;
    background-color: #FFFFFF;
}

.contact-full h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #11225B;
    position: relative;
}

.contact-full h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFAF00;
}

.contact-content-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Team Structure Page */
.team-structure {
    padding: 100px 0 50px;
    background-color: #FFFFFF;
}

.team-structure h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #11225B;
    position: relative;
}

.team-structure h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFAF00;
}

.team-structure .subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    font-size: 1.2rem;
}

.leadership-section,
.divisions-section {
    margin-bottom: 50px;
}

.leadership-section h2,
.divisions-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #11225B;
    position: relative;
}

.leadership-section h2::after,
.divisions-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFAF00;
}

.position-group {
    margin-bottom: 40px;
}

.position-group h3,
.position-group h4 {
    color: #FFAF00;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.member-card {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-photo {
    flex: 0 0 150px;
    background-color: #11225B;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.member-info {
    flex: 1;
    padding: 25px;
}

.member-info h4 {
    color: #11225B;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.member-info .position {
    color: #FFAF00;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.member-info .bio {
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #e3f2fd;
    color: #11225B;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #bbdefb;
    transform: translateY(-2px);
}

.division {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.division h3 {
    color: #11225B;
    font-size: 1.6rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFAF00;
}

.contact-info-full h2 {
    color: #11225B;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.contact-info-full p {
    margin-bottom: 15px;
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-person-full {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #FFAF00;
    transition: transform 0.3s ease;
}

.contact-person-full:hover {
    transform: translateY(-3px);
}

.person-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #11225B;
    margin-bottom: 15px;
}

.person-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555555;
}

.contact-location h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #11225B;
    margin: 20px 0 10px;
}

.contact-location p {
    margin-bottom: 20px;
    padding-left: 0px;
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
}

.contact-form-full h2 {
    color: #11225B;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #11225B;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
    color: #333333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFAF00;
}

/* Footer */
.footer {
    background-color: #11225B;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #FFAF00;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #FFAF00;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFAF00;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #FFAF00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-content,
    .contact-content-full {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .about-full,
    .gallery-full,
    .contact-full {
        padding-top: 120px;
    }

    .about-preview h2,
    .gallery-preview h2,
    .contact-preview h2,
    .about-full h1,
    .gallery-full h1,
    .contact-full h1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}



/* CSS dari team.html - disesuaikan dengan standar */
.team-structure {
    padding: 100px 0 50px;
    background-color: #ffffff;
}

.team-structure h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #11225B;
    position: relative;
}

.team-structure h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFAF00;
}

.subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    font-size: 1.2rem;
}

.org-chart {
    margin-bottom: 40px;
    text-align: center;
}

.org-chart h2 {
    color: #11225B;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.chart-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.org-chart-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chart-caption {
    margin-top: 15px;
    color: #555;
    font-style: italic;
}

.position-group {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.position-group h3 {
    color: #11225B;
    margin-bottom: 25px;
    font-size: 1.6rem;
    text-align: center;
}

.member-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-photo {
    flex: 0 0 150px;
    background-color: #11225B;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.member-info {
    flex: 1;
    padding: 25px;
}

.member-info h4 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.position {
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.bio {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #e3f2fd;
    color: #11225B;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #FFAF00;
    color: #11225B;
    transform: translateY(-2px);
}

.division-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 15px 0;
}

.toggle-btn {
    flex: 1;
    background-color: #f8f9fa;
    color: #11225B;
    border: 1px solid #ddd;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.toggle-btn:hover {
    background-color: #FFAF00;
    color: white;
    border-color: #FFAF00;
}

.toggle-btn.active {
    background-color: #11225B;
    color: white;
    border-color: #11225B;
    box-shadow: 0 4px 10px rgba(17, 34, 91, 0.3);
}

.position-group {
    margin-bottom: 30px;
}

.position-group h4 {
    color: #FFAF00;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Styling untuk split division */
.division-split-container {
    width: 100%;
    margin-top: 20px;
}

.division-content-container {
    width: 100%;
    transition: all 0.3s ease;
}

.division-single {
    display: none;
    width: 100%;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.division-single.active {
    display: block;
}

.division-single.half-width {
    display: inline-block;
    width: 48.5%;
    vertical-align: top;
}

.division-single.hidden {
    display: none;
}

/* Tampilan untuk dua divisi bersamaan */
.division-content-container.two-visible {
    display: flex;
    gap: 20px;
}

.division-content-container.two-visible .division-single {
    flex: 1;
    width: 48.5%;
}

@media (max-width: 768px) {
    .division-content.split-container {
        flex-direction: column;
    }

    .division-content.half-width {
        width: 100%;
    }

    .division-single.half-width {
        width: 100%;
    }

    .division-content-container.two-visible .division-single {
        width: 100%;
    }
}


/* Tombol Navigasi Cepat */
.quick-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 98;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #11225B;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.nav-btn:hover {
    background-color: #FFAF00;
    color: #11225B;
}

.nav-btn i {
    font-size: 16px;
}

/* Color utility classes */
.bg-primary {
    background-color: #11225B !important;
}

.bg-secondary {
    background-color: #FFAF00 !important;
}

.bg-accent {
    background-color: #180F60 !important;
}

.bg-light {
    background-color: #FFFFFF !important;
}

.text-primary {
    color: #11225B !important;
}

.text-secondary {
    color: #FFAF00 !important;
}

.text-white {
    color: #FFFFFF !important;
}

.text-dark {
    color: #333333 !important;
}

.text-gray {
    color: #555555 !important;
}

.border-primary {
    border-color: #11225B !important;
}

.border-secondary {
    border-color: #FFAF00 !important;
}

/* Division Split Container */
.division-split-container {
    width: 100%;
    margin-top: 20px;
}

.division-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.division-buttons[data-parent] {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.division-content {
    width: 100%;
    transition: all 0.3s ease;
}

.division-content.split-container {
    display: flex;
    gap: 20px;
}

.division-single {
    display: none;
}

.division-single.active {
    display: block;
}

.division-single.half-width {
    display: inline-block;
    width: calc(50% - 10px);
    vertical-align: top;
}

.division-single.hidden {
    display: none;
}

/* Tombol Toggle */
.toggle-btn {
    background-color: #f8f9fa;
    color: #11225B;
    border: 1px solid #ddd;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.toggle-btn:hover {
    background-color: #FFAF00;
    color: white;
    border-color: #FFAF00;
}

.toggle-btn.active {
    background-color: #11225B;
    color: white;
    border-color: #11225B;
    box-shadow: 0 4px 10px rgba(17, 34, 91, 0.3);
}

.toggle-btn.left-btn {
    margin-right: 5px;
}

.toggle-btn.right-btn {
    margin-left: 5px;
}

/* Tombol Scroll to Top */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #11225B;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

.scroll-to-top-btn:hover {
    background-color: #FFAF00;
    color: #11225B;
}

.scroll-to-top-btn i {
    font-size: 18px;
}

/* Agenda Page Styles - Modern Horizontal Card Design */
.agenda-full {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.agenda-full h1 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #11225B;
    letter-spacing: -0.5px;
}

.agenda-full h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFAF00, #ffa50080);
    margin: 20px auto 0;
    border-radius: 2px;
}

.agenda-full .subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Agenda Section - Modern Horizontal Cards */
.agenda-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #11225B;
    margin-bottom: 10px;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Agenda Card - Modern Horizontal Design */
.agenda-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
}

.agenda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(17, 34, 91, 0.15);
}

/* Date Panel - Left Side Blue Vertical */
.agenda-date-panel {
    background: linear-gradient(135deg, #11225B 0%, #1a3370 100%);
    color: white;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    max-width: 150px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
}

.agenda-date-panel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.agenda-date-panel .agenda-day {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    letter-spacing: -2px;
}

.agenda-date-panel .agenda-month {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    display: block;
}

.agenda-date-panel .agenda-year {
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
    display: block;
}

/* Agenda Content - Right Side */
.agenda-content {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

/* Agenda Content for Horizontal Card */
.agenda-card-horizontal .agenda-content {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

/* Agenda Header with Title and Status */
.agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.agenda-title-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.agenda-title {
    font-size: 1.45rem;
    font-weight: 600;
    color: #11225B;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

/* Agenda Title for Horizontal Card */
.agenda-card-horizontal .agenda-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #11225B;
    margin: 0;
    line-height: 1.3;
}

.agenda-status {
    display: inline-block;
    background: linear-gradient(135deg, #11225B, #1a3370);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(17, 34, 91, 0.2);
}

/* Agenda Meta - Time & Location with Icons */
.agenda-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

/* Agenda Details - for Horizontal Card */
.agenda-details {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.agenda-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    background: rgba(255, 175, 0, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
}

.agenda-detail-item i {
    color: #FFAF00;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.agenda-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.92rem;
    background: rgba(255, 175, 0, 0.05);
    padding: 8px 14px;
    border-radius: 8px;
}

.agenda-meta-item i {
    color: #FFAF00;
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

/* Countdown Badge */
.agenda-countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFAF00 0%, #ff9500 100%);
    color: #11225B;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 5px 0;
    width: fit-content;
    box-shadow: 0 3px 10px rgba(255, 175, 0, 0.25);
}

.agenda-countdown i {
    font-size: 1rem;
}

/* Description */
.agenda-description {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 8px 0;
    flex: 1;
}

/* Action Buttons */
.agenda-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 15px;
}

/* Action Buttons for Horizontal Card */
.agenda-card-horizontal .agenda-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    gap: 8px;
}

/* Agenda Buttons */
.btn-agenda-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFAF00, #ff9500);
    color: #11225B;
    padding: 11px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 175, 0, 0.2);
}

.btn-agenda-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 175, 0, 0.3);
}

.btn-agenda-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #11225B, #1a3370);
    color: white;
    padding: 11px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(17, 34, 91, 0.2);
}

.btn-agenda-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(17, 34, 91, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #FFAF00, #ff9500);
    color: #11225B;
    box-shadow: 0 3px 10px rgba(255, 175, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 175, 0, 0.35);
}

.btn-secondary {
    background: linear-gradient(135deg, #11225B, #1a3370);
    color: white;
    box-shadow: 0 3px 10px rgba(17, 34, 91, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 34, 91, 0.35);
}

/* Agenda Full Page - Compact Efficient Design */
.agenda-full {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.agenda-full h1 {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #11225B;
}

.agenda-full h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #FFAF00;
    margin: 15px auto 0;
    border-radius: 2px;
}

.agenda-full .subtitle {
    text-align: center;
    margin-bottom: 35px;
    color: #666;
    font-size: 0.95rem;
}

/* Agenda Container */
.agenda-container {
    display: flex;
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Agenda List */
.agenda-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Agenda Section Wrapper */
.agenda-section-wrapper {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.agenda-section-wrapper.proker-section-wrapper {
    border-top: 3px solid #11225B;
}

.agenda-section-wrapper.progit-section-wrapper {
    border-top: 3px solid #FFAF00;
}

/* Agenda Section Header */
.agenda-section-header {
    padding: 18px 22px;
    border-bottom: 1px solid #f0f0f0;
}

/* Section Header Content */
.section-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.section-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proker-section .section-icon-wrapper {
    background: #11225B;
}

.progit-section .section-icon-wrapper {
    background: #FFAF00;
}

.section-icon-wrapper i {
    color: white;
    font-size: 1.1rem;
}

.section-title {
    color: #11225B;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.section-subtitle {
    color: #777;
    font-size: 0.82rem;
    margin: 3px 0 0 0;
}

/* Section Info */
.section-info {
    background: #fafafa;
    padding: 12px 16px;
    border-radius: 8px;
}

.section-info p {
    color: #666;
    line-height: 1.5;
    margin: 0 0 10px 0;
    font-size: 0.82rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.78rem;
}

.proker-section .info-list li i {
    color: #11225B;
}

.progit-section .info-list li i {
    color: #FFAF00;
}

.info-list li i {
    font-size: 0.82rem;
}

/* Agenda Cards Inner */
.agenda-cards-inner {
    padding: 16px 22px 20px;
}

/* Agenda Card Horizontal - Compact */
.agenda-card-horizontal {
    display: flex;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: all 0.2s ease;
}

.agenda-card-horizontal:last-child {
    margin-bottom: 0;
}

.agenda-card-horizontal:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Date Panel - Compact */
.agenda-date-panel {
    background: #f5f7fa;
    color: #333;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    max-width: 100px;
    text-align: center;
    flex-shrink: 0;
    border-right: 1px solid #e8e8e8;
}

.agenda-date-panel .agenda-day {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: #11225B;
}

.agenda-date-panel .agenda-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
    color: #666;
}

.agenda-date-panel .agenda-year {
    font-size: 0.72rem;
    font-weight: 500;
    margin-top: 2px;
    color: #888;
    display: block;
}

/* Agenda Content */
.agenda-card-horizontal .agenda-content {
    flex: 1;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Agenda Header */
.agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.agenda-title-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.agenda-card-horizontal .agenda-title {
    font-size: 1rem;
    font-weight: 600;
    color: #11225B;
    margin: 0;
    line-height: 1.35;
}

.agenda-status {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Countdown */
.agenda-countdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff8e6;
    color: #b8860b;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.agenda-countdown i {
    font-size: 0.75rem;
}

/* Agenda Details */
.agenda-details {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.agenda-detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.8rem;
}

.agenda-detail-item i {
    color: #999;
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

/* Description */
.agenda-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 4px 0;
}

/* Action Buttons */
.agenda-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-agenda-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #11225B;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    transition: all 0.2s ease;
    border: none;
}

.btn-agenda-primary:hover {
    background: #0d1a4a;
}

.btn-agenda-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #11225B;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    transition: all 0.2s ease;
    border: 1px solid #11225B;
}

.btn-agenda-secondary:hover {
    background: #f8f9fa;
}

/* Filter Sidebar */
.agenda-filter-minimal {
    flex-shrink: 0;
    width: 170px;
    background: white;
    padding: 16px 14px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-title {
    color: #11225B;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-title i {
    color: #999;
    font-size: 0.85rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 6px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fafafa;
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-family: inherit;
}

.filter-btn i {
    color: #999;
    width: 16px;
    margin-right: 6px;
    font-size: 0.8rem;
}

.badge-count {
    background: #f0f0f0;
    color: #777;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    min-width: 24px;
    text-align: center;
}

.filter-btn:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.filter-btn.active {
    background: #11225B;
    color: white;
    border-color: #11225B;
}

.filter-btn.active i {
    color: white;
}

.filter-btn.active .badge-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .agenda-full {
        padding-top: 110px;
    }

    .agenda-full h1 {
        font-size: 1.6rem;
    }

    .agenda-full .subtitle {
        font-size: 0.88rem;
    }

    .agenda-container {
        flex-direction: column;
        gap: 20px;
    }

    .agenda-filter-minimal {
        width: 100%;
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px 16px;
    }

    .filter-title {
        width: 100%;
        margin-bottom: 8px;
        padding-bottom: 8px;
        font-size: 0.78rem;
    }

    .filter-btn {
        flex: 1;
        min-width: 100px;
        margin-bottom: 0;
        justify-content: center;
        text-align: center;
        padding: 7px 9px;
        font-size: 0.75rem;
    }

    .filter-btn i {
        margin-right: 4px;
    }

    .badge-count {
        margin-left: 4px;
    }

    .agenda-section-wrapper {
        border-radius: 8px;
    }

    .agenda-section-header {
        padding: 16px 18px;
    }

    .section-header-content {
        gap: 12px;
    }

    .section-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .section-icon-wrapper i {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.05rem;
    }

    .section-subtitle {
        font-size: 0.78rem;
    }

    .section-info {
        padding: 12px 14px;
    }

    .section-info p {
        font-size: 0.78rem;
    }

    .info-list {
        gap: 12px;
    }

    .info-list li {
        font-size: 0.72rem;
    }

    .agenda-cards-inner {
        padding: 14px 16px 18px;
    }

    .agenda-card-horizontal {
        flex-direction: column;
    }

    .agenda-date-panel {
        min-width: 100%;
        padding: 12px 14px;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .agenda-date-panel .agenda-day {
        font-size: 1.75rem;
    }

    .agenda-date-panel .agenda-month,
    .agenda-date-panel .agenda-year {
        font-size: 0.7rem;
    }

    .agenda-card-horizontal .agenda-content {
        padding: 14px 16px;
    }

    .agenda-card-horizontal .agenda-title {
        font-size: 0.95rem;
    }

    .agenda-header {
        flex-direction: column;
        gap: 8px;
    }

    .agenda-countdown {
        align-self: flex-start;
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .agenda-details {
        gap: 8px;
        flex-direction: column;
    }

    .agenda-detail-item {
        font-size: 0.78rem;
    }

    .agenda-description {
        font-size: 0.82rem;
    }

    .agenda-actions {
        flex-direction: column;
    }

    .btn-agenda-primary,
    .btn-agenda-secondary {
        width: 100%;
        text-align: center;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    .agenda-full h1 {
        font-size: 1.4rem;
    }

    .agenda-date-panel {
        padding: 10px 12px;
        gap: 8px;
    }

    .agenda-date-panel .agenda-day {
        font-size: 1.5rem;
    }

    .agenda-card-horizontal .agenda-content {
        padding: 12px 14px;
    }

    .agenda-card-horizontal .agenda-title {
        font-size: 0.9rem;
    }

    .agenda-detail-item {
        font-size: 0.75rem;
    }

    .section-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .section-title {
        font-size: 1rem;
    }
}

/* Calendar - Minimalist Modern Elegant */
.calendar-section-minimal {
    padding: 40px 0;
    background: transparent;
}

.calendar-minimal {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.calendar-minimal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.calendar-minimal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #11225B;
}

.calendar-minimal-title i {
    color: #FFAF00;
    font-size: 1.1rem;
}

.calendar-minimal-nav {
    display: flex;
    gap: 6px;
}

.btn-nav-minimal {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f8f9fa;
    border: none;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.btn-nav-minimal:hover {
    background: #11225B;
    color: white;
}

.btn-today-minimal {
    background: linear-gradient(135deg, #FFAF00, #ff9500);
    color: #11225B;
    width: auto;
    padding: 0 14px;
}

.btn-today-minimal:hover {
    background: #11225B;
    color: white;
}

.calendar-minimal-body {
    padding: 16px 20px;
}

.calendar-minimal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-minimal-weekdays span {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
}

.calendar-minimal-weekdays span.weekday-weekend {
    color: #dc3545 !important;
}

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

.calendar-date-minimal {
    aspect-ratio: 1;
    min-height: 42px;
    border-radius: 6px;
    background: #fafafa;
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid transparent;
}

.calendar-date-minimal:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.calendar-date-minimal.today {
    background: #11225B;
}

.calendar-date-minimal.today .date-num {
    color: white;
}

.calendar-date-minimal.today .event-dot-minimal {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.calendar-date-minimal.other-month {
    opacity: 0.25;
}

.calendar-date-minimal.has-proker {
    border-color: #11225B;
    background: rgba(17, 34, 91, 0.05);
}

.calendar-date-minimal.has-progit {
    border-color: #FFAF00;
    background: rgba(255, 175, 0, 0.05);
}

.date-num {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.event-dots-minimal {
    display: flex;
    gap: 2px;
    margin-top: auto;
}

.event-dot-minimal {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

.event-dot-minimal.proker {
    background: #11225B;
}

.event-dot-minimal.progit {
    background: #FFAF00;
}

/* Legend Minimalist */
.calendar-minimal-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 14px 24px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.calendar-minimal-legend span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.proker {
    background: #11225B;
}

.legend-dot.progit {
    background: #FFAF00;
}

/* Agenda Container with Filter */
.agenda-container {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-start;
    flex-direction: row;
}

/* Agenda List - Horizontal Cards */
.agenda-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    order: 1;
}

/* Filter Minimalis - Sidebar Kanan - Professional Design */
.agenda-filter-minimal {
    flex-shrink: 0;
    width: 220px;
    background: white;
    padding: 28px 22px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: fit-content;
    position: sticky;
    top: 120px;
    order: 2;
}

.filter-title {
    color: #11225B;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.filter-title i {
    color: #FFAF00;
    font-size: 1rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: #fafafa;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    font-family: inherit;
}

.filter-btn i {
    color: #888;
    transition: color 0.25s ease;
    width: 18px;
    margin-right: 10px;
    font-size: 0.95rem;
}

.badge-count {
    background: #f0f0f0;
    color: #777;
    padding: 3px 9px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 26px;
    text-align: center;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    background: #f5f5f5;
    color: #11225B;
    border-color: rgba(17, 34, 91, 0.15);
    transform: translateX(3px);
}

.filter-btn:hover i {
    color: #11225B;
}

.filter-btn:hover .badge-count {
    background: #e8e8e8;
}

.filter-btn.active {
    background: linear-gradient(135deg, #11225B, #1a3370);
    color: white;
    border-color: #11225B;
    box-shadow: 0 4px 12px rgba(17, 34, 91, 0.25);
}

.filter-btn.active i {
    color: white;
}

.filter-btn.active .badge-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    background: white;
    border-radius: 16px;
    border: 2px dashed #e0e0e0;
}

.no-results i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #ddd;
}

.no-results p {
    font-size: 1.1rem;
    color: #999;
    font-weight: 500;
}

/* Agenda Section Wrapper - Unified Professional Design */
.agenda-section-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin: 50px 0;
    border: 2px solid;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.agenda-section-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.agenda-section-wrapper:first-child {
    margin-top: 0;
}

/* PROKER Section - Professional Blue */
.agenda-section-wrapper.proker-section-wrapper {
    border-color: rgba(17, 34, 91, 0.2);
    background: linear-gradient(145deg, rgba(17, 34, 91, 0.02) 0%, #ffffff 100%);
}

/* PROGIT Section - Professional Yellow/Orange */
.agenda-section-wrapper.progit-section-wrapper {
    border-color: rgba(255, 175, 0, 0.3);
    background: linear-gradient(145deg, rgba(255, 175, 0, 0.02) 0%, #ffffff 100%);
}

/* Agenda Section Header */
.agenda-section-header {
    padding: 35px 35px 25px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.agenda-section-header[style*="display: none"] {
    opacity: 0;
    transform: translateY(-10px);
}

/* Cards Inner Container - Subtle Separator */
.agenda-cards-inner {
    border-top: 1px solid;
    padding-top: 25px;
    margin-top: 10px;
}

.proker-cards-inner {
    border-top-color: rgba(17, 34, 91, 0.15);
}

.progit-cards-inner {
    border-top-color: rgba(255, 175, 0, 0.2);
}

.proker-cards-inner .agenda-card-horizontal {
    border-left: 4px solid rgba(17, 34, 91, 0.3);
    transition: all 0.3s ease;
}

.proker-cards-inner .agenda-card-horizontal:hover {
    border-left-color: #11225B;
    border-left-width: 5px;
}

.progit-cards-inner .agenda-card-horizontal {
    border-left: 4px solid rgba(255, 175, 0, 0.3);
    transition: all 0.3s ease;
}

.progit-cards-inner .agenda-card-horizontal:hover {
    border-left-color: #FFAF00;
    border-left-width: 5px;
}

/* PROKER/PROGIT Icon Colors */
.proker-section .section-icon-wrapper {
    background: linear-gradient(135deg, #11225B, #1a3370);
    box-shadow: 0 6px 20px rgba(17, 34, 91, 0.25);
}

.proker-section .info-list i {
    color: #11225B;
}

.progit-section .section-icon-wrapper {
    background: linear-gradient(135deg, #FFAF00, #ff9500);
    box-shadow: 0 6px 20px rgba(255, 175, 0, 0.25);
}

.progit-section .info-list i {
    color: #FFAF00;
}

.section-header-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.section-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon-wrapper i {
    color: white;
    font-size: 1.6rem;
}

.section-text {
    flex: 1;
}

.section-title {
    color: #11225B;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.section-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.section-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.93rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555;
    font-size: 0.88rem;
    line-height: 1.6;
}

.info-list li i {
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.agenda-card-horizontal {
    display: flex;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 1;
    transform: translateY(0);
}

.agenda-card-horizontal:hover {
    transform: translateX(6px) translateY(0) !important;
    box-shadow: 0 6px 24px rgba(17, 34, 91, 0.1);
    border-color: rgba(17, 34, 91, 0.15);
}

/* Date Panel - Left Side Blue (for agenda-card-horizontal) */
.agenda-card-horizontal .agenda-date-panel {
    background: linear-gradient(135deg, #11225B, #1a3370);
    color: white;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    max-width: 140px;
    text-align: center;
    flex-shrink: 0;
}

.agenda-card-horizontal .agenda-date-panel .agenda-day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.agenda-card-horizontal .agenda-date-panel .agenda-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    display: block;
}

.agenda-card-horizontal .agenda-date-panel .agenda-year {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
    display: block;
}

/* Agenda Content - Right Side (for agenda-card-horizontal) */
.agenda-card-horizontal .agenda-content {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

/* Agenda Header (for agenda-card-horizontal) */
.agenda-card-horizontal .agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.agenda-title-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agenda-title-section h3 {
    color: #11225B;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.agenda-status {
    display: inline-block;
    background: linear-gradient(135deg, #11225B, #1a3370);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}

.agenda-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FFAF00, #ff9500);
    color: #11225B;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.agenda-countdown i {
    font-size: 0.9rem;
}

/* Agenda Details */
.agenda-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.agenda-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.agenda-detail-item i {
    color: #FFAF00;
    font-size: 0.9rem;
    width: 16px;
}

/* Agenda Description */
.agenda-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex: 1;
}

/* Agenda Actions */
.agenda-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-agenda-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFAF00, #ff9500);
    color: #11225B;
    padding: 11px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 175, 0, 0.2);
}

.btn-agenda-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 175, 0, 0.3);
}

.btn-agenda-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #11225B, #1a3370);
    color: white;
    padding: 11px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(17, 34, 91, 0.2);
}

.btn-agenda-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(17, 34, 91, 0.3);
}

/* Responsive Agenda Horizontal Cards */
@media screen and (max-width: 992px) {
    .agenda-container {
        flex-direction: column;
    }
    
    .agenda-list {
        order: 2;
    }
    
    .agenda-filter-minimal {
        width: 100%;
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        padding: 20px;
        order: 1;
    }
    
    .filter-title {
        width: 100%;
        margin-bottom: 12px;
        padding-bottom: 12px;
        font-size: 0.9rem;
    }

    .filter-btn {
        flex: 1;
        min-width: 110px;
        margin-bottom: 0;
        justify-content: center;
        text-align: center;
        padding: 11px 14px;
    }

    .filter-btn i {
        margin-right: 6px;
    }

    .badge-count {
        margin-left: 6px;
    }
}

@media screen and (max-width: 768px) {
    .calendar-section-minimal {
        padding: 30px 0;
    }
    
    .calendar-minimal {
        border-radius: 10px;
    }
    
    .calendar-minimal-header {
        padding: 14px 18px;
    }
    
    .calendar-minimal-title {
        font-size: 0.9rem;
    }
    
    .calendar-minimal-title i {
        font-size: 1rem;
    }
    
    .btn-nav-minimal {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .btn-today-minimal {
        padding: 0 10px;
    }
    
    .calendar-minimal-body {
        padding: 12px 14px;
    }
    
    .calendar-minimal-weekdays {
        gap: 3px;
    }
    
    .calendar-minimal-weekdays span {
        font-size: 0.6rem;
        padding: 4px 0;
    }
    
    .calendar-minimal-dates {
        gap: 3px;
    }
    
    .calendar-date-minimal {
        min-height: 38px;
        padding: 4px 3px;
        border-radius: 5px;
    }
    
    .date-num {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }
    
    .event-dot-minimal {
        width: 3px;
        height: 3px;
    }
    
    .calendar-minimal-legend {
        padding: 10px 14px;
        gap: 14px;
    }
    
    .calendar-minimal-legend span {
        font-size: 0.65rem;
    }
    
    .legend-dot {
        width: 6px;
        height: 6px;
    }
}

/* Agenda Container with Filter */
.agenda-container {
        border-radius: 16px;
    }
    
    .agenda-cards-inner {
        border-top-width: 1px;
        padding-top: 20px;
    }
    
    .proker-cards-inner .agenda-card-horizontal,
    .progit-cards-inner .agenda-card-horizontal {
        border-left-width: 3px;
    }

    .agenda-section-header {
        padding: 24px 20px;
    }
    
    .section-header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .section-icon-wrapper i {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .section-info {
        padding: 18px;
    }
    
    .section-info p {
        font-size: 0.85rem;
    }
    
    .info-list li {
        font-size: 0.8rem;
    }

    .agenda-filter-minimal {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }

    .agenda-card-horizontal {
        flex-direction: column;
    }

    .agenda-date-panel {
        min-width: 100%;
        padding: 20px;
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .agenda-date-panel .agenda-day {
        font-size: 2.5rem;
    }

    .agenda-date-panel .agenda-month,
    .agenda-date-panel .agenda-year {
        font-size: 0.85rem;
    }

    .agenda-header {
        flex-direction: column;
        gap: 12px;
    }

    .agenda-countdown {
        align-self: flex-start;
    }

    .agenda-details {
        gap: 12px;
    }

    .agenda-actions {
        flex-direction: column;
    }

    .btn-agenda-primary,
    .btn-agenda-secondary {
        width: 100%;
        text-align: center;
    }

    .agenda-full {
        padding-top: 130px;
    }

    .agenda-full h1 {
        font-size: 2rem;
    }


@media screen and (max-width: 480px) {
    .agenda-content {
        padding: 20px;
    }

    .agenda-title-section h3 {
        font-size: 1.2rem;
    }

    .agenda-date-panel .agenda-day {
        font-size: 2rem;
    }
}