:root {
    --blue: #0042B2;
    --blue-light: #3D91CE;
    --blue-dark: #212841;
}

.bg-primary {
    background-color: var(--blue-light) !important;
}

.bg-primary-blue {
    background-color: var(--blue) !important;
}

.link-primary {
    color: var(--blue) !important;
}

.timeline-marker {
    color: var(--blue-light) !important;
}

.text-primary {
    color: var(--blue) !important;
}

/* smooth scroll */
html {
    scroll-behavior: smooth !important;
}

.list-pertanyaan {
    max-width: 80%;
}

.btn-primary {
    background-color: var(--blue-light) !important;
    border-color: var(--blue-light) !important;
}

/* btn transition smooth */
.btn {
    transition: all 0.2s ease;
}

.btn-outline-secondary {
    color: #727272;
}

/* @media mobile */
@media (max-width: 768px) {
    .list-pertanyaan {
        max-width: 100%;
    }
}

.testimonial {
    background: #f9f9f9;
    padding: 60px 0;
}

.testimonial-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.testimonial .card {
    border: none;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.testimonial .image-wrapper {
    height: 600px;
    /* sebelumnya 300px */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

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


.testimonial .card-body {
    padding: 30px;
}

.testimonial .quote {
    font-size: 1rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial .name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
}

@media (max-width: 767.98px) {
    .testimonial .image-wrapper {
        height: 250px;
    }
}

.testimonial .swiper {
    padding-bottom: 50px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #444;
}

.swiper-pagination-bullet-active {
    background-color: #444;
}

/* --- Modern UI/UX Additions --- */
.card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn {
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn {
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    border: none;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    filter: brightness(1.05);
}

.syarat-item {
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-left: 4px solid var(--blue-light);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.syarat-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
    border-left-color: var(--blue);
}

.syarat-item:nth-child(even) {
    border-left-color: var(--blue);
}

.syarat-item:nth-child(even):hover {
    border-left-color: var(--blue-light);
}

.syarat-number {
    width: 36px;
    min-width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
}

.timeline-item .timeline-content {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.timeline-item .timeline-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    background-color: var(--blue-light);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.timeline-item .timeline-content:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: transparent;
}

.timeline-item .timeline-content:hover:before {
    opacity: 1;
}

.testimonial .card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    height: 100%;
}

.testimonial .image-wrapper {
    border-radius: 0;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 700;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--blue);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title-left::after {
    left: 0;
    transform: translateX(0);
}

.testimonial .card {
    border: none;
    border-radius: 24px;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    height: 100%;
}

.testimonial .image-wrapper {
    height: 100%;
    min-height: 100%;
    border-radius: 0;
    overflow: hidden;
}

.testimonial .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

@media (max-width: 767.98px) {
    .testimonial .image-wrapper {
        min-height: 250px;
        height: 300px;
    }

    .testimonial .card-body {
        padding: 30px 20px !important;
    }
}

.testimonial .card-body {
    padding: 50px 40px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.testimonial .quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 100px;
    color: rgba(61, 145, 206, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial .quote {
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    color: #444;
    font-style: italic;
}

.testimonial .name {
    font-weight: 700;
    color: var(--blue);
    margin-top: 20px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* --- Alumni Carousel (ringkas & rapi) --- */
.alumni-swiper {
    padding: 10px 8px 64px;
}

.alumni-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.alumni-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
}

.alumni-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.alumni-card .alumni-photo {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.alumni-card .alumni-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.4s ease;
}

.alumni-card:hover .alumni-photo img {
    transform: scale(1.05);
}

.alumni-card .alumni-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    position: relative;
}

.alumni-card .alumni-quote-icon {
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(61, 145, 206, 0.15);
    position: absolute;
    top: 6px;
    right: 22px;
}

.alumni-card .alumni-quote {
    font-size: 0.96rem;
    font-style: italic;
    line-height: 1.65;
    color: #555;
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.alumni-card .alumni-meta {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.alumni-card .alumni-name {
    font-weight: 700;
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 2px;
}

.alumni-card .alumni-school {
    font-size: 0.82rem;
    color: #888;
}

.alumni-card .alumni-readmore {
    align-self: flex-start;
    margin-top: 16px;
    background: transparent;
    border: none;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.25s ease;
}

.alumni-card .alumni-readmore:hover {
    gap: 8px;
    text-decoration: underline;
}

.alumni-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.alumni-modal .modal-header {
    border: none;
    padding-bottom: 0;
}

.alumni-modal .modal-quote {
    font-style: italic;
    line-height: 1.8;
    color: #444;
    font-size: 1.02rem;
}

.alumni-modal .modal-name {
    font-weight: 700;
    color: var(--blue);
    margin-top: 18px;
}

.alumni-modal .modal-school {
    font-size: 0.88rem;
    color: #888;
}

.alumni-swiper .swiper-button-next,
.alumni-swiper .swiper-button-prev {
    color: var(--blue);
    top: 50%;
    transform: translateY(-50%);
    margin-top: -28px;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    z-index: 5;
}

.alumni-swiper .swiper-button-next:hover,
.alumni-swiper .swiper-button-prev:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.alumni-swiper .swiper-button-next::after,
.alumni-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.alumni-swiper .swiper-button-prev {
    left: -6px;
}

.alumni-swiper .swiper-button-next {
    right: -6px;
}

.alumni-swiper .swiper-pagination {
    bottom: 16px;
}

.alumni-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: var(--blue);
    opacity: 0.35;
    transition: all 0.25s ease;
}

.alumni-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

/* --- Custom Jadwal Timeline --- */
.jadwal-timeline {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0 0 0 8px;
}

.jadwal-timeline::before {
    content: "";
    position: absolute;
    left: 34.5px;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue-light), var(--blue));
    border-radius: 3px;
}

.jadwal-item {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 22px;
    padding-left: 4px;
    margin-bottom: 18px;
}

.jadwal-item:last-child {
    margin-bottom: 0;
}

.jadwal-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--blue);
    box-shadow: 0 4px 14px rgba(0, 66, 178, 0.15);
    transition: all 0.3s ease;
    align-self: center;
}

.jadwal-card {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}

.jadwal-card .jadwal-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-dark);
    line-height: 1.4;
}

.jadwal-month {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blue);
    background: rgba(61, 145, 206, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.jadwal-item:hover .jadwal-marker {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: scale(1.08);
}

.jadwal-item:hover .jadwal-card {
    transform: translateX(6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.jadwal-item.is-highlight .jadwal-marker {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.jadwal-item.is-highlight .jadwal-card {
    background: linear-gradient(135deg, rgba(0, 66, 178, 0.04), rgba(61, 145, 206, 0.08));
    border-color: rgba(0, 66, 178, 0.12);
}

.jadwal-item.is-highlight .jadwal-month {
    background: var(--blue);
    color: #fff;
}

@media (max-width: 575.98px) {
    .jadwal-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .jadwal-item {
        gap: 14px;
    }
}