/*
Theme Name: Alumni Theme
Author: Amal Dermawan
Description: Theme sederhana untuk website alumni
Version: 1.0
*/
/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ============================================================
   ALUMNI HALL OF FAME - External Stylesheet (Revisi)
   Copy ke file: style.css (di theme folder)
   ============================================================ */

.alumni-hof-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 100px 0 120px;
    overflow: hidden;
}

.alumni-hof-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.alumni-hof-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13,110,253,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Header --- */
.alumni-hof-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.alumni-hof-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: alumni-float 3s ease-in-out infinite;
}

.alumni-hof-icon i {
    font-size: 36px;
    color: #fff;
}

@keyframes alumni-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.alumni-hof-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.alumni-hof-subtitle {
    font-size: 18px;
    color: #6c757d;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Grid --- */
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .alumni-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 25px;
    }
}

@media (max-width: 576px) {
    .alumni-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Card --- */
.alumni-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px 110px; /* padding-bottom besar untuk ruang quote */
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.8);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.alumni-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.alumni-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

/* --- Photo --- */
.alumni-photo-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
}

.alumni-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #f093fb 0%, #f5576c 30%, #4facfe 70%, #00f2fe 100%) border-box;
    padding: 4px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.alumni-card:hover .alumni-photo {
    transform: scale(1.08);
}

.alumni-photo-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #f093fb, #f5576c, #4facfe, #00f2fe, #f093fb);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    animation: alumni-spin 4s linear infinite;
    filter: blur(8px);
}

.alumni-card:hover .alumni-photo-ring {
    opacity: 0.4;
}

@keyframes alumni-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Badge --- */
.alumni-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a2e;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 170, 0, 0.3);
    z-index: 3;
}

/* --- Name & Dept --- */
.alumni-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.alumni-card:hover .alumni-name {
    color: #667eea;
}

.alumni-dept {
    display: inline-block;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 0.3px;
}

/* --- Quote Reveal (di bawah card, tidak menutupi foto) --- */
.alumni-quote-reveal {
    position: absolute;
    bottom: 28px;
    left: 25px;
    right: 25px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.alumni-card:hover .alumni-quote-reveal {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.alumni-quote-text {
    font-size: 14px;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    padding-top: 10px;
}

.alumni-quote-text::before {
    content: '"';
    font-size: 40px;
    color: rgba(102, 126, 234, 0.15);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    line-height: 1;
}

/* --- Social Icons --- */
.alumni-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.alumni-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.25);
}

.alumni-social a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* --- View All --- */
.alumni-viewall-wrap {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.alumni-viewall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alumni-viewall:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.alumni-viewall i {
    transition: transform 0.3s ease;
}

.alumni-viewall:hover i {
    transform: translateX(4px);
}

/* --- Stagger Animation --- */
.alumni-card:nth-child(1) { transition-delay: 0.1s; }
.alumni-card:nth-child(2) { transition-delay: 0.2s; }
.alumni-card:nth-child(3) { transition-delay: 0.3s; }
.alumni-card:nth-child(4) { transition-delay: 0.4s; }
.alumni-card:nth-child(5) { transition-delay: 0.5s; }
.alumni-card:nth-child(6) { transition-delay: 0.6s; }


/* ============================================================
   EVENT ALUMNI - External Stylesheet
   Tambahkan ke file: style.css (di theme folder)
   ============================================================ */

/* --- Section --- */
.event-alumni-section {
    position: relative;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0 110px;
    overflow: hidden;
}

.event-alumni-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
}

.event-alumni-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

/* --- Header --- */
.event-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.event-header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ff6b6b 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.35);
    animation: event-pulse 2.5s ease-in-out infinite;
}

@keyframes event-pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(245, 87, 108, 0.35); transform: scale(1); }
    50% { box-shadow: 0 12px 35px rgba(245, 87, 108, 0.5); transform: scale(1.05); }
}

.event-header-icon i {
    font-size: 30px;
    color: #fff;
}

.event-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.event-title span {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Carousel Container --- */
.event-carousel-wrap {
    position: relative;
    z-index: 2;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .event-carousel-wrap {
        padding: 0 20px;
    }
}

/* --- Navigation Arrows --- */
.event-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.event-nav:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.event-nav.prev { left: 0; }
.event-nav.next { right: 0; }

@media (max-width: 768px) {
    .event-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .event-nav.prev { left: -5px; }
    .event-nav.next { right: -5px; }
}

/* --- Scroll Track --- */
.event-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 10px 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.event-track::-webkit-scrollbar {
    display: none;
}

/* --- Event Card --- */
.event-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1e2a4a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.event-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

@media (max-width: 576px) {
    .event-card {
        flex: 0 0 280px;
    }
}

/* --- Image Area --- */
.event-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-card:hover .event-img {
    transform: scale(1.15);
}

/* --- Date Badge --- */
.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    text-align: center;
    min-width: 55px;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.35);
    z-index: 3;
}

.event-date-day {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.event-date-month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* --- Category Tag --- */
.event-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.1);
}

/* --- Gradient Overlay (bawah) --- */
.event-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(30, 42, 74, 1) 0%, rgba(30, 42, 74, 0.5) 50%, transparent 100%);
    z-index: 2;
}

/* --- Content Area --- */
.event-content {
    padding: 20px 22px 25px;
    position: relative;
    z-index: 3;
    margin-top: -40px;
}

.event-title-card {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.event-card:hover .event-title-card {
    color: #f093fb;
}

.event-speaker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.event-speaker-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.event-speaker-name {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.event-speaker-name strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* --- Meta Info --- */
.event-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

.event-meta-item i {
    font-size: 13px;
    color: #f5576c;
}

.event-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
}

.event-card:hover .event-arrow {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    border-color: transparent;
    transform: translateX(3px);
}

/* --- View All Button --- */
.event-viewall-wrap {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.event-viewall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.35);
    border: none;
}

.event-viewall:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.5);
}

.event-viewall i {
    transition: transform 0.3s ease;
}

.event-viewall:hover i {
    transform: translateX(4px);
}

/* --- Stagger Animation --- */
.event-card:nth-child(1) { transition-delay: 0.08s; }
.event-card:nth-child(2) { transition-delay: 0.16s; }
.event-card:nth-child(3) { transition-delay: 0.24s; }
.event-card:nth-child(4) { transition-delay: 0.32s; }
.event-card:nth-child(5) { transition-delay: 0.40s; }
.event-card:nth-child(6) { transition-delay: 0.48s; }
.event-card:nth-child(7) { transition-delay: 0.56s; }

/* ============================================================
   BERITA ALUMNI - ASYMMETRIC LAYOUT
   1 Featured (besar kiri) + 3 Side (kanan)
   Tambahkan ke file: style.css
   ============================================================ */

/* --- Section --- */
.berita-alumni-section {
    position: relative;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    padding: 100px 0 110px;
    overflow: hidden;
}

.berita-alumni-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.3), transparent);
}

/* --- Header --- */
.berita-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.berita-header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #a71d2a 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    animation: berita-bounce 2.5s ease-in-out infinite;
}

@keyframes berita-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.berita-header-icon i {
    font-size: 30px;
    color: #fff;
}

.berita-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.berita-title span {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.berita-subtitle {
    font-size: 17px;
    color: #6c757d;
    font-weight: 400;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Asymmetric Grid --- */
.berita-asymmetric {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .berita-asymmetric {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   FEATURED CARD (Kiri - Besar)
   ============================================ */
.berita-featured {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
}

.berita-featured.visible {
    opacity: 1;
    transform: translateY(0);
}

.berita-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.berita-featured-img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
}

.berita-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.berita-featured:hover .berita-featured-img {
    transform: scale(1.08);
}

.berita-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 2;
}

.berita-featured-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 16px;
    text-align: center;
    min-width: 65px;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    z-index: 3;
}

.berita-featured-date .bf-month {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

.berita-featured-date .bf-day {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-top: 4px;
}

.berita-featured-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    color: #dc3545;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.berita-featured-content {
    padding: 28px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.berita-featured-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.berita-featured:hover .berita-featured-title {
    color: #dc3545;
}

.berita-featured-excerpt {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.berita-featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.berita-featured-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6c757d;
}

.berita-featured-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(220, 53, 69, 0.15);
}

.berita-featured-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #dc3545;
    text-decoration: none;
    transition: all 0.3s ease;
}

.berita-featured-readmore i {
    transition: transform 0.3s ease;
}

.berita-featured:hover .berita-featured-readmore i {
    transform: translateX(6px);
}

/* ============================================
   SIDE CARDS (Kanan - 3 item vertikal)
   ============================================ */
.berita-side-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.berita-side-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateX(30px);
    border: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
}

.berita-side-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.berita-side-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.berita-side-img-wrap {
    position: relative;
    height: 100%;
    min-height: 140px;
    overflow: hidden;
}

.berita-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.berita-side-card:hover .berita-side-img {
    transform: scale(1.1);
}

.berita-side-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 45px;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
    z-index: 2;
}

.berita-side-date .bs-month {
    display: block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.berita-side-date .bs-day {
    display: block;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    margin-top: 2px;
}

.berita-side-content {
    padding: 18px 20px 18px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.berita-side-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ffe0e3 0%, #ffc9ce 100%);
    color: #c82333;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.berita-side-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.berita-side-card:hover .berita-side-title {
    color: #dc3545;
}

.berita-side-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #adb5bd;
}

.berita-side-meta i {
    font-size: 11px;
    color: #dc3545;
}

/* --- Responsive Side Cards --- */
@media (max-width: 576px) {
    .berita-side-card {
        grid-template-columns: 120px 1fr;
        gap: 12px;
    }
    .berita-side-img-wrap {
        min-height: 110px;
    }
    .berita-side-content {
        padding: 14px 14px 14px 0;
    }
    .berita-side-title {
        font-size: 13px;
    }
}

/* ============================================
   VIEW ALL BUTTON
   ============================================ */
.berita-viewall-wrap {
    text-align: center;
    margin-top: 55px;
    position: relative;
    z-index: 2;
}

.berita-viewall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    border: none;
}

.berita-viewall:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.45);
}

.berita-viewall i {
    transition: transform 0.3s ease;
}

.berita-viewall:hover i {
    transform: translateX(4px);
}

/* --- Stagger Animation --- */
.berita-side-card:nth-child(1) { transition-delay: 0.15s; }
.berita-side-card:nth-child(2) { transition-delay: 0.3s; }
.berita-side-card:nth-child(3) { transition-delay: 0.45s; }

/* ============================================================
   PARTNERS & REVIEWS - STANDALONE STYLESHEET
   Tidak bergantung pada CSS Kallyas. Copy ke style.css
   ============================================================ */

/* --- Section --- */
.pr-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: #1a1a2e;
}

.pr-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("<?php echo get_theme_file_uri('images/partners-bg.jpg'); ?>");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pr-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.88);
}

/* --- Header --- */
.pr-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pr-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pr-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Testimonials Grid --- */
.pr-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .pr-testimonials {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* --- Testimonial Card --- */
.pr-testi-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pr-testi-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pr-testi-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.pr-testi-quote {
    font-size: 16px;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.pr-testi-quote::before {
    content: '"';
    font-size: 50px;
    color: rgba(102, 126, 234, 0.3);
    position: absolute;
    top: -15px;
    left: 0;
    font-family: Georgia, serif;
    line-height: 1;
}

/* --- Testimonial Author --- */
.pr-testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pr-testi-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.pr-testi-card:hover .pr-testi-avatar {
    border-color: rgba(102, 126, 234, 0.6);
    transform: scale(1.05);
}

.pr-testi-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.pr-testi-info span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pr-testi-stars {
    margin-top: 8px;
    display: flex;
    gap: 3px;
}

.pr-testi-stars i {
    font-size: 12px;
    color: #ffc107;
}

/* --- Separator --- */
.pr-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 0 0 50px;
    position: relative;
    z-index: 2;
}

/* --- Partners Section --- */
.pr-partners {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 767px) {
    .pr-partners {
        flex-direction: column;
        gap: 25px;
    }
}

.pr-partners-label {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 10px;
}

.pr-partners-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* --- Partners Carousel --- */
.pr-carousel-wrap {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.pr-carousel {
    display: flex;
    gap: 40px;
    animation: pr-scroll 20s linear infinite;
    width: max-content;
}

.pr-carousel:hover {
    animation-play-state: paused;
}

@keyframes pr-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pr-partner-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(200%);
}

.pr-partner-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.1);
}

.pr-partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- Stagger Animation --- */
.pr-testi-card:nth-child(1) { transition-delay: 0.1s; }
.pr-testi-card:nth-child(2) { transition-delay: 0.2s; }
.pr-testi-card:nth-child(3) { transition-delay: 0.3s; }


.job-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 100px 0 120px;
    overflow: hidden;
}

.job-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.job-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.job-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.job-header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(59,130,246,0.25);
}

.job-header-icon i {
    font-size: 28px;
    color: #fff;
}

.job-title {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.job-title span {
    background: linear-gradient(135deg, #3b82f6 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-subtitle {
    font-size: 17px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.job-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .job-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.job-column {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.job-column:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.job-col-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e2e8f0;
    position: relative;
}

.job-col-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #f59e0b);
    border-radius: 2px;
}

.job-col-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.job-col-icon.blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1d4ed8;
}

.job-col-icon.amber {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
}

.job-col-title {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid transparent;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-20px);
}

.job-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.job-item:hover {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateX(8px);
}

.job-logo-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-item:hover .job-logo-wrap {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59,130,246,0.15);
}

.job-logo-wrap img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.job-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.job-company {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.job-item:hover .job-company {
    color: #3b82f6;
}

.job-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-date i {
    font-size: 11px;
    color: #f59e0b;
}

.job-viewall {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #64748b;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    width: 100%;
}

.job-viewall:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(59,130,246,0.3);
}

.job-viewall i {
    transition: transform 0.3s ease;
}

.job-viewall:hover i {
    transform: translateX(4px);
}

.job-item:nth-child(1) { transition-delay: 0.08s; }
.job-item:nth-child(2) { transition-delay: 0.16s; }
.job-item:nth-child(3) { transition-delay: 0.24s; }
.job-item:nth-child(4) { transition-delay: 0.32s; }
