
        /* Inline CSS untuk kemudahan (sebaiknya dipindah ke style.css) */
        :root {
            --primary-color: #198754;
            --secondary-color: #0d6efd;
            --accent-color: #ffc107;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.3rem;
        }

        /* Logo responsif: lebih kecil di mobile agar muat satu baris */
        .navbar-logo {
            width: 45px;
            height: 45px;
        }

        @media (min-width: 576px) {
            .navbar-logo {
                width: 70px;
                height: 70px;
            }
        }
        
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero/sekolah-main.jpg');
            background-size: cover;
            background-position: center;
            min-height: 500px;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        
        
        .program-card {
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .program-card:hover {
            background-color: #f8f9fa;
        }
        
        .info-box {
            background: linear-gradient(135deg, var(--primary-color), #20c997);
            color: white;
            border-radius: 15px;
            padding: 2rem;
        }
        
        .prestasi-badge {
            background-color: var(--accent-color);
            color: #000;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
        }
        
        footer {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: white;
            color: var(--primary-color);
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: none;
        }
        
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), #20c997);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero/sekolah-main.jpg') center/cover;
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
}

.vision-card {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.mission-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.org-chart {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.org-box {
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.org-box h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.facility-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-card img {
    height: 200px;
    object-fit: cover;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 24px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.accreditation-badge {
    background-color: var(--accent-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.5rem;
}

.stats-card {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

/* Berita Section */
.news-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
    height: 220px;
    object-fit: cover;
}

.news-date {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 10px;
}

.news-category {
    background-color: var(--accent-color);
    color: #000;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.agenda-card {
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    background-color: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.agenda-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.agenda-date {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.agenda-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.agenda-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.announcement-card {
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 2px solid var(--accent-color);
}

.announcement-card.urgent {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-color: #dc3545;
}

.announcement-card.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-color: #28a745;
}

.filter-btn {
    border-radius: 50px;
    padding: 8px 20px;
    margin: 5px;
}

.pagination .page-link {
    color: var(--primary-color);
    border-radius: 50px;
    margin: 0 3px;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.sidebar-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

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

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.category-list a:hover {
    color: var(--primary-color);
}

.popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.popular-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.newsletter-box input {
    border-radius: 50px;
    border: none;
    padding: 10px 20px;
    margin-bottom: 10px;
}

/* Detail Berita Section */
.article-header {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.article-category {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.article-content {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #333;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.article-content .caption {
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.share-section {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.share-facebook { background-color: #1877F2; }
.share-twitter { background-color: #1DA1F2; }
.share-whatsapp { background-color: #25D366; }
.share-linkedin { background-color: #0A66C2; }
.share-copy { background-color: #6c757d; }

.tags-section {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.tag {
    display: inline-block;
    background-color: #e9ecef;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.author-box {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.related-news-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.related-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.related-news-card img {
    height: 180px;
    object-fit: cover;
}

.sidebar-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.recent-post h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.recent-post h6 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post h6 a:hover {
    color: var(--primary-color);
}

.recent-post small {
    color: #6c757d;
    font-size: 0.75rem;
}

.breadcrumb-custom {
    background-color: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #6c757d;
}

.navigation-post {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.nav-post-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.nav-post-item:hover {
    background-color: #f8f9fa;
}

.nav-post-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-post-item.prev {
    text-align: right;
    flex-direction: row-reverse;
}
  
/* Akademik Section */
.curriculum-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.schedule-table {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
}

.schedule-table th,
.schedule-table td {
    padding: 1rem;
    vertical-align: middle;
    text-align: center;
}

.schedule-table tbody tr:hover {
    background-color: #f8f9fa;
}

.subject-ips { background-color: #fd7e14; color: white; }
.subject-bahasa { background-color: #6f42c1; color: white; }

.assessment-card {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.program-box {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.program-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.osn-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.osn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.osn-card img {
    height: 200px;
    object-fit: cover;
}

.literacy-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.download-box {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.download-box:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateX(5px);
}

.stats-card {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.accordion-button:not(.collapsed) {
    background-color: #d4edda;
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
}

/* Kesiswaan Section */
.osis-card {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.osis-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ekskul-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.ekskul-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.ekskul-card img {
    height: 180px;
    object-fit: cover;
}

.prestasi-card {
    border-left: 5px solid var(--accent-color);
    border-radius: 15px;
    background-color: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.prestasi-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateX(5px);
}

.level-internasional { background-color: #6f42c1; color: white; }

.level-provinsi { background-color: #fd7e14; color: white; }

.achievement-box {
    background: linear-gradient(135deg, var(--accent-color), #ffdb73);
    color: #000;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.konseling-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 24px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.badge-seni { background-color: #6f42c1; color: white; }

.badge-keterampilan { background-color: #fd7e14; color: white; }

.vote-section {
    background: linear-gradient(135deg, #6f42c1, #a855f7);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.candidate-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    color: #000;
}

.candidate-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-color);
}

/* PPDB Section */
.info-banner {
    background: linear-gradient(135deg, var(--accent-color), #ffdb73);
    color: #000;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-banner h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.countdown-box {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.countdown-item {
    display: inline-block;
    margin: 0 10px;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 10px;
    min-width: 80px;
}

.step-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.requirement-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateX(5px);
}

.timeline-box {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-item.completed::before {
    background-color: var(--accent-color);
}

.timeline-item.active::before {
    background-color: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(13, 110, 253, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
}

.quota-box {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-color), #ffdb73);
    color: #000;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffdb73, var(--accent-color));
    color: #000;
}

/* Kontak Section */
.contact-info-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.contact-form-card {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.office-hour-card {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.office-hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.office-hour-item:last-child {
    border-bottom: none;
}

.social-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-social-link {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: white;
}

.social-youtube { background-color: #FF0000; }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-tiktok { background-color: #000000; }
.social-facebook { background-color: #1877F2; }
.social-blog { background-color: var(--primary-color); }

.department-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.department-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateX(5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    color: white;
}
