:root {
    --basigi-blue: #0a3d91;
    --basigi-blue-dark: #062a66;
    --basigi-blue-soft: #eaf1ff;
    --basigi-gold: #f5b921;
    --basigi-gold-dark: #d99a05;
    --basigi-white: #ffffff;
    --basigi-text: #1f2a44;
    --basigi-muted: #6b7280;
    --basigi-border: #e5e7eb;
    --basigi-bg: #f7f9fc;
    --basigi-radius: 14px;
    --basigi-shadow: 0 12px 28px rgba(10, 61, 145, 0.08);
    --basigi-shadow-hover: 0 16px 40px rgba(10, 61, 145, 0.16);
}

* {
    box-sizing: border-box;
}

body.basigi-body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--basigi-bg);
    color: var(--basigi-text);
    margin: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--basigi-blue);
}

a:hover {
    color: var(--basigi-blue-dark);
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Topbar ===== */
.basigi-topbar {
    background: var(--basigi-blue-dark);
    color: #d9e3ff;
    font-size: 0.85rem;
    padding: 8px 0;
    position: relative;
    z-index: 1060;
}

.basigi-topbar a {
    color: #d9e3ff;
    transition: color 0.2s;
}

.basigi-topbar a:hover {
    color: var(--basigi-gold);
}

.basigi-topbar .basigi-topbar-meta span,
.basigi-topbar .basigi-topbar-meta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 18px;
}

.basigi-topbar .basigi-topbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.basigi-topbar .basigi-lang {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.8rem;
}

.basigi-topbar .basigi-lang-trigger {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.basigi-topbar .basigi-lang-trigger::after {
    margin-left: 2px;
}

.basigi-topbar .basigi-lang-menu {
    border: 1px solid #dce6ff;
    border-radius: 10px;
    padding: 6px;
    min-width: 150px;
    z-index: 1080;
}

.basigi-topbar .basigi-lang-menu .dropdown-item {
    border-radius: 8px;
    color: #213559;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.basigi-topbar .basigi-lang-menu .dropdown-item .flag {
    font-size: 1rem;
    line-height: 1;
}

.basigi-topbar .flag-rect {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-block;
    flex-shrink: 0;
}

.basigi-topbar .flag-id {
    background: linear-gradient(to bottom, #e70011 0%, #e70011 50%, #ffffff 50%, #ffffff 100%);
}

.basigi-topbar .flag-en {
    background:
        linear-gradient(to bottom, #012169 0%, #012169 100%);
    position: relative;
}

.basigi-topbar .flag-en::before,
.basigi-topbar .flag-en::after {
    content: '';
    position: absolute;
    background: #fff;
}

.basigi-topbar .flag-en::before {
    left: 6px;
    top: 0;
    width: 2px;
    height: 100%;
}

.basigi-topbar .flag-en::after {
    top: 5px;
    left: 0;
    width: 100%;
    height: 2px;
}

.basigi-topbar .basigi-lang-menu .dropdown-item:hover {
    background: #edf3ff;
    color: #123f95;
}

.basigi-topbar .basigi-lang-menu .dropdown-item.active,
.basigi-topbar .basigi-lang-menu .dropdown-item:active {
    background: #1d5fc7;
    color: #fff;
}

/* ===== Navbar ===== */
.basigi-navbar {
    background: var(--basigi-white);
    border-bottom: 1px solid var(--basigi-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.basigi-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--basigi-blue);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.basigi-navbar .basigi-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dce6ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(10, 61, 145, 0.15);
}

.basigi-navbar .basigi-brand-mark img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.basigi-navbar .basigi-brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}

.basigi-navbar .basigi-brand-text small {
    font-size: 0.62rem;
    letter-spacing: 0.2px;
    color: #5f6e8c;
    margin-top: 2px;
    font-weight: 600;
}

.basigi-navbar .nav-link {
    color: var(--basigi-text);
    font-weight: 500;
    margin: 0 4px;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.2s;
}

.basigi-navbar .nav-link:hover,
.basigi-navbar .nav-link.active {
    color: var(--basigi-blue);
    background: var(--basigi-blue-soft);
}

.basigi-navbar .basigi-login-btn {
    background: var(--basigi-blue);
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 999px;
    font-weight: 600;
    margin-left: 8px;
}

.basigi-navbar .basigi-login-btn:hover {
    background: var(--basigi-blue-dark);
    color: #fff !important;
}

.basigi-dropdown {
    border: 1px solid #e6ecfb;
    border-radius: 12px;
    padding: 8px;
}

.basigi-dropdown .dropdown-item {
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.92rem;
}

.basigi-dropdown .dropdown-item .badge-short {
    background: var(--basigi-blue-soft);
    color: var(--basigi-blue);
    border-radius: 999px;
    padding: 2px 8px;
    margin-right: 8px;
    font-size: 0.72rem;
    font-weight: 700;
}

.basigi-prodi-dropdown .basigi-mega-menu {
    margin-top: 12px;
    width: min(980px, calc(100vw - 24px));
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dfE7fa;
}

.basigi-mega-faculty-list {
    background: #f6f9ff;
    border-right: 1px solid #e4ecff;
    height: 100%;
    max-height: 430px;
    overflow-y: auto;
    padding: 10px;
}

.basigi-mega-faculty-item {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 9px 12px;
    border-radius: 10px;
    color: #31405f;
    font-weight: 600;
    margin-bottom: 4px;
    transition: all 0.2s;
}

.basigi-mega-faculty-item:hover,
.basigi-mega-faculty-item.active {
    background: #e8f0ff;
    color: var(--basigi-blue);
}

.basigi-mega-prodi-list {
    background: #fff;
    max-height: 430px;
    overflow-y: auto;
    padding: 16px;
}

.basigi-mega-title {
    color: var(--basigi-blue-dark);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.basigi-mega-prodi-panel {
    display: none;
}

.basigi-mega-prodi-panel.active {
    display: block;
}

.basigi-mega-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.basigi-mega-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e9eefb;
    border-radius: 10px;
    padding: 8px 10px;
    color: #304261;
    background: #fff;
    font-size: 0.86rem;
    gap: 8px;
}

.basigi-mega-links a:hover {
    border-color: #bfd2ff;
    background: #f3f7ff;
    color: var(--basigi-blue);
}

.basigi-mega-links a small {
    color: #5a719d;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== Hero ===== */
.basigi-hero {
    position: relative;
    background: linear-gradient(135deg, var(--basigi-blue) 0%, var(--basigi-blue-dark) 100%);
    color: #fff;
    padding: 90px 0 110px;
    overflow: hidden;
}

.basigi-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 185, 33, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.basigi-hero::after {
    content: '';
    position: absolute;
    bottom: -160px;
    left: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.basigi-hero .basigi-hero-content {
    position: relative;
    z-index: 2;
}

.basigi-hero .basigi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.basigi-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.basigi-hero h1 span {
    color: var(--basigi-gold);
}

.basigi-hero .basigi-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffe9a8;
    margin-bottom: 16px;
}

.basigi-hero .basigi-hero-desc {
    font-size: 1.05rem;
    color: #d8e3ff;
    max-width: 580px;
    margin-bottom: 28px;
}

.basigi-hero .basigi-search {
    background: #fff;
    border-radius: 999px;
    padding: 6px;
    display: flex;
    align-items: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
    max-width: 560px;
    margin-bottom: 24px;
}

.basigi-hero .basigi-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 18px;
    font-size: 0.95rem;
    background: transparent;
    color: var(--basigi-text);
}

.basigi-hero .basigi-search button {
    background: var(--basigi-blue);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    transition: background 0.2s;
}

.basigi-hero .basigi-search button:hover {
    background: var(--basigi-blue-dark);
}

.basigi-hero .basigi-hero-btns .btn {
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.2s;
}

.basigi-hero .basigi-btn-primary {
    background: var(--basigi-gold);
    color: var(--basigi-blue-dark);
    border: none;
}

.basigi-hero .basigi-btn-primary:hover {
    background: var(--basigi-gold-dark);
    color: var(--basigi-blue-dark);
}

.basigi-hero .basigi-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.basigi-hero .basigi-btn-outline:hover {
    background: #fff;
    color: var(--basigi-blue);
}

.basigi-hero .basigi-hero-visual {
    position: relative;
    z-index: 2;
    text-align: center;
}

.basigi-hero .basigi-hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.basigi-hero .basigi-hero-card .item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.basigi-hero .basigi-hero-card .item:last-child {
    border-bottom: none;
}

.basigi-hero .basigi-hero-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(245, 185, 33, 0.2);
    color: var(--basigi-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.basigi-hero .basigi-hero-card .item h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.basigi-hero .basigi-hero-card .item p {
    margin: 0;
    font-size: 0.8rem;
    color: #c8d4f0;
}

/* ===== Section general ===== */
.basigi-section {
    padding: 64px 0;
}

.basigi-section.alt {
    background: var(--basigi-white);
}

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

.basigi-section-header.left {
    text-align: left;
}

.basigi-section-header .basigi-eyebrow {
    display: inline-block;
    background: var(--basigi-blue-soft);
    color: var(--basigi-blue);
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.basigi-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--basigi-text);
    margin-bottom: 8px;
}

.basigi-section-header p {
    color: var(--basigi-muted);
    max-width: 640px;
    margin: 0 auto;
}

.basigi-section-header.left p {
    margin: 0;
}

/* ===== Faculty Cards ===== */
.basigi-faculty-card {
    background: #fff;
    border: 1px solid var(--basigi-border);
    border-radius: var(--basigi-radius);
    padding: 22px;
    text-align: center;
    transition: all 0.25s;
    height: 100%;
}

.basigi-faculty-card:hover {
    transform: translateY(-4px);
    border-color: var(--basigi-blue);
    box-shadow: var(--basigi-shadow);
}

.basigi-faculty-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--basigi-blue-soft);
    color: var(--basigi-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.basigi-faculty-card h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--basigi-text);
}

.basigi-faculty-card .badge-prodi {
    background: var(--basigi-gold);
    color: var(--basigi-blue-dark);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Course / Video Card ===== */
.basigi-card {
    background: #fff;
    border-radius: var(--basigi-radius);
    overflow: hidden;
    border: 1px solid var(--basigi-border);
    transition: all 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.basigi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--basigi-shadow-hover);
    border-color: transparent;
}

.basigi-card .basigi-card-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--basigi-blue-soft);
}

.basigi-card .basigi-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.basigi-card:hover .basigi-card-thumb img {
    transform: scale(1.06);
}

.basigi-card .basigi-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--basigi-blue);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.basigi-card .basigi-card-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.basigi-card .basigi-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 61, 145, 0.0);
    transition: background 0.25s;
}

.basigi-card:hover .basigi-card-play {
    background: rgba(10, 61, 145, 0.4);
}

.basigi-card .basigi-card-play .play-icon {
    width: 56px;
    height: 56px;
    background: var(--basigi-gold);
    color: var(--basigi-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
}

.basigi-card:hover .basigi-card-play .play-icon {
    opacity: 1;
    transform: scale(1);
}

.basigi-card .basigi-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.basigi-card .basigi-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--basigi-muted);
    margin-bottom: 8px;
}

.basigi-card .basigi-card-meta .badge-faculty {
    background: var(--basigi-blue-soft);
    color: var(--basigi-blue);
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
}

.basigi-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
    color: var(--basigi-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.basigi-card h5 a {
    color: inherit;
}

.basigi-card h5 a:hover {
    color: var(--basigi-blue);
}

.basigi-card .basigi-card-lecturer {
    font-size: 0.85rem;
    color: var(--basigi-muted);
    margin-bottom: 12px;
}

.basigi-card .basigi-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--basigi-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--basigi-muted);
}

.basigi-card .basigi-card-footer .rating {
    color: var(--basigi-gold-dark);
    font-weight: 600;
}

/* ===== Today Activity ===== */
.basigi-activity {
    background: #fff;
    border-radius: var(--basigi-radius);
    border: 1px solid var(--basigi-border);
    padding: 24px;
    box-shadow: var(--basigi-shadow);
    height: 100%;
}

.basigi-activity h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.basigi-activity h4 .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--basigi-gold);
    box-shadow: 0 0 0 4px rgba(245, 185, 33, 0.25);
}

.basigi-activity-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--basigi-border);
}

.basigi-activity-item:last-child {
    border-bottom: none;
}

.basigi-activity-item .time {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    background: var(--basigi-blue-soft);
    color: var(--basigi-blue);
    border-radius: 8px;
    padding: 8px 4px;
    font-weight: 700;
    font-size: 0.85rem;
    height: fit-content;
}

.basigi-activity-item .content h6 {
    font-size: 0.95rem;
    margin: 0 0 4px;
    font-weight: 600;
    color: var(--basigi-text);
}

.basigi-activity-item .content small {
    color: var(--basigi-muted);
    font-size: 0.8rem;
}

.basigi-activity-item .type-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 9px;
    border-radius: 999px;
    background: var(--basigi-gold);
    color: var(--basigi-blue-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ===== News Card ===== */
.basigi-news-card {
    background: #fff;
    border: 1px solid var(--basigi-border);
    border-radius: var(--basigi-radius);
    overflow: hidden;
    transition: all 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.basigi-news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--basigi-shadow-hover);
}

.basigi-news-card .thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.basigi-news-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basigi-news-card .body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.basigi-news-card .meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.78rem;
    color: var(--basigi-muted);
    margin-bottom: 8px;
}

.basigi-news-card .meta .cat {
    background: var(--basigi-gold);
    color: var(--basigi-blue-dark);
    padding: 2px 9px;
    border-radius: 999px;
    font-weight: 600;
}

.basigi-news-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
    color: var(--basigi-text);
}

.basigi-news-card p {
    color: var(--basigi-muted);
    font-size: 0.9rem;
    margin: 0;
}

.basigi-news-card .read-more {
    margin-top: auto;
    padding-top: 12px;
    color: var(--basigi-blue);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ===== Stats Section ===== */
.basigi-stats {
    background: linear-gradient(135deg, var(--basigi-blue) 0%, var(--basigi-blue-dark) 100%);
    color: #fff;
    border-radius: 24px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.basigi-stats::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 185, 33, 0.25) 0%, transparent 70%);
}

.basigi-stat-item {
    text-align: center;
    padding: 16px;
    position: relative;
    z-index: 2;
}

.basigi-stat-item .icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--basigi-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.basigi-stat-item .value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.basigi-stat-item .label {
    color: #d8e3ff;
    font-size: 0.95rem;
}

/* ===== CTA Pengajar ===== */
.basigi-cta {
    background: var(--basigi-white);
    border: 1px solid var(--basigi-border);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.basigi-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 185, 33, 0.2) 0%, transparent 70%);
}

.basigi-cta::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 61, 145, 0.08) 0%, transparent 70%);
}

.basigi-cta .content {
    position: relative;
    z-index: 2;
}

.basigi-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--basigi-text);
}

.basigi-cta p {
    color: var(--basigi-muted);
    margin-bottom: 22px;
    max-width: 580px;
}

.basigi-cta .btn-cta {
    background: var(--basigi-blue);
    color: #fff;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    margin-right: 10px;
    transition: all 0.2s;
}

.basigi-cta .btn-cta:hover {
    background: var(--basigi-blue-dark);
    color: #fff;
}

.basigi-cta .btn-cta-outline {
    background: transparent;
    color: var(--basigi-blue);
    border: 2px solid var(--basigi-blue);
}

.basigi-cta .btn-cta-outline:hover {
    background: var(--basigi-blue);
    color: #fff;
}

/* ===== Footer ===== */
.basigi-footer {
    background: #061f4d;
    color: #c8d4f0;
    padding: 60px 0 24px;
    margin-top: 60px;
}

.basigi-footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1rem;
}

.basigi-footer .basigi-footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    display: block;
}

.basigi-footer p {
    font-size: 0.9rem;
    color: #a4b3d4;
}

.basigi-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.basigi-footer ul li {
    margin-bottom: 8px;
}

.basigi-footer ul a {
    color: #c8d4f0;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.basigi-footer ul a:hover {
    color: var(--basigi-gold);
}

.basigi-footer .basigi-social {
    margin-top: 14px;
    display: flex;
    gap: 10px;
}

.basigi-footer .basigi-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.basigi-footer .basigi-social a:hover {
    background: var(--basigi-gold);
    color: var(--basigi-blue-dark);
}

.basigi-footer .basigi-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    margin-top: 36px;
    font-size: 0.85rem;
    color: #a4b3d4;
}

/* ===== Detail page ===== */
.basigi-detail-hero {
    background: linear-gradient(135deg, var(--basigi-blue) 0%, var(--basigi-blue-dark) 100%);
    color: #fff;
    padding: 60px 0;
}

.basigi-detail-hero .breadcrumb-basigi {
    color: #c8d4f0;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.basigi-detail-hero .breadcrumb-basigi a {
    color: #c8d4f0;
}

.basigi-detail-hero .breadcrumb-basigi a:hover {
    color: var(--basigi-gold);
}

.basigi-detail-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.basigi-detail-hero .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #d8e3ff;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.basigi-detail-hero .meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.basigi-detail-content {
    background: #fff;
    border-radius: var(--basigi-radius);
    padding: 32px;
    border: 1px solid var(--basigi-border);
    box-shadow: var(--basigi-shadow);
}

.basigi-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--basigi-text);
}

.basigi-detail-sidebar {
    background: #fff;
    border-radius: var(--basigi-radius);
    padding: 24px;
    border: 1px solid var(--basigi-border);
    box-shadow: var(--basigi-shadow);
    position: sticky;
    top: 100px;
}

.basigi-detail-sidebar h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--basigi-text);
}

.basigi-detail-sidebar ul.info {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.basigi-detail-sidebar ul.info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--basigi-border);
    font-size: 0.9rem;
}

.basigi-detail-sidebar ul.info li:last-child {
    border-bottom: none;
}

.basigi-detail-sidebar ul.info li span:first-child {
    color: var(--basigi-muted);
}

.basigi-detail-sidebar ul.info li span:last-child {
    font-weight: 600;
    color: var(--basigi-text);
}

.basigi-detail-sidebar .basigi-enroll-btn {
    width: 100%;
    background: var(--basigi-blue);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: background 0.2s;
}

.basigi-detail-sidebar .basigi-enroll-btn:hover {
    background: var(--basigi-blue-dark);
}

/* ===== Faculty Detail ===== */
.basigi-faculty-hero {
    background:
        radial-gradient(circle at 85% 12%, rgba(245, 185, 33, 0.24) 0%, rgba(245, 185, 33, 0) 36%),
        radial-gradient(circle at 12% 90%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 40%),
        linear-gradient(130deg, #082a66 0%, #0a3d91 48%, #165bcf 100%);
    color: #fff;
    padding: 58px 0 64px;
}

.basigi-faculty-hero .breadcrumb-basigi {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.basigi-faculty-hero .breadcrumb-basigi a {
    color: #fff;
}

.basigi-faculty-hero .breadcrumb-basigi a:hover {
    color: #ffe9a8;
}

.basigi-faculty-hero .basigi-faculty-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 0.85rem;
}

.basigi-faculty-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
}

.basigi-faculty-hero p {
    margin: 0;
    max-width: 780px;
    color: #f2f6ff;
}

.basigi-prodi-board {
    background: #fff;
    border: 1px solid var(--basigi-border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--basigi-shadow);
}

.basigi-prodi-table-wrap {
    background: #fdfdff;
    border: 1px solid #e6ebf9;
    border-radius: 12px;
    overflow: hidden;
}

.basigi-prodi-table {
    margin: 0;
}

.basigi-prodi-table thead th {
    border: none;
    background: linear-gradient(90deg, #0a3d91 0%, #165bcf 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 16px;
}

.basigi-prodi-table td {
    padding: 10px 16px;
    color: var(--basigi-text);
    border-color: #edf1fb;
    vertical-align: middle;
}

.basigi-prodi-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #133f99;
    font-weight: 600;
}

.basigi-prodi-link i {
    font-size: 0.95rem;
}

.basigi-prodi-link:hover {
    color: #0a2f75;
}

.basigi-prodi-table tbody tr:last-child td {
    border-bottom: none;
}

.basigi-prodi-table tbody td:first-child {
    font-weight: 700;
    color: #1a3f9e;
}

/* ===== Prodi Detail ===== */
.basigi-prodi-hero {
    background:
        radial-gradient(circle at 80% 12%, rgba(245, 185, 33, 0.24) 0%, rgba(245, 185, 33, 0) 34%),
        linear-gradient(130deg, #082a66 0%, #0a3d91 50%, #165bcf 100%);
    color: #fff;
    padding: 60px 0 68px;
}

.basigi-prodi-hero .breadcrumb-basigi {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.basigi-prodi-hero .breadcrumb-basigi a {
    color: #fff;
}

.basigi-prodi-hero .breadcrumb-basigi a:hover {
    color: #ffe8a1;
}

.basigi-prodi-hero h1 {
    font-size: clamp(1.8rem, 3.8vw, 2.9rem);
    font-weight: 800;
    margin: 0 0 10px;
    max-width: 920px;
}

.basigi-prodi-hero p {
    margin: 0;
    max-width: 760px;
    color: #deebff;
}

.basigi-prodi-course-btn {
    margin-top: 16px;
    border-radius: 999px;
    font-weight: 700;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.basigi-prodi-course-btn:hover {
    background: #fff;
    color: var(--basigi-blue-dark);
}

.basigi-course-prodi-hero {
    background:
        radial-gradient(circle at 84% 16%, rgba(245, 185, 33, 0.24) 0%, rgba(245, 185, 33, 0) 36%),
        linear-gradient(130deg, #082a66 0%, #0a3d91 48%, #165bcf 100%);
    color: #fff;
    padding: 58px 0 64px;
}

.basigi-course-prodi-hero .breadcrumb-basigi {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.basigi-course-prodi-hero .breadcrumb-basigi a {
    color: #fff;
}

.basigi-course-prodi-hero .breadcrumb-basigi a:hover {
    color: #ffe8a1;
}

.basigi-course-prodi-hero h1 {
    font-size: clamp(1.8rem, 3.8vw, 2.7rem);
    font-weight: 800;
    margin: 0 0 10px;
    max-width: 920px;
}

.basigi-course-prodi-hero p {
    margin: 0;
    color: #deebff;
}

.basigi-course-empty {
    border: 1px dashed #c8d6f8;
    border-radius: 14px;
    padding: 22px;
    background: #f8fbff;
    color: #2f4a7c;
    text-align: center;
    font-weight: 600;
}

.basigi-schedule-hero {
    background:
        radial-gradient(circle at 84% 16%, rgba(245, 185, 33, 0.24) 0%, rgba(245, 185, 33, 0) 36%),
        linear-gradient(130deg, #082a66 0%, #0a3d91 48%, #165bcf 100%);
    color: #fff;
    padding: 58px 0 64px;
}

.basigi-schedule-hero .breadcrumb-basigi {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.basigi-schedule-hero .breadcrumb-basigi a {
    color: #fff;
}

.basigi-schedule-hero .breadcrumb-basigi a:hover {
    color: #ffe8a1;
}

.basigi-schedule-hero h1 {
    font-size: clamp(1.8rem, 3.8vw, 2.7rem);
    font-weight: 800;
    margin: 0 0 10px;
}

.basigi-schedule-hero p {
    margin: 0;
    color: #deebff;
}

.basigi-schedule-filter-card {
    border: 1px solid #dce7fb;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--basigi-shadow);
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
    flex-wrap: wrap;
}

.basigi-schedule-filter-card h5 {
    margin: 0 0 4px;
    font-weight: 700;
    color: #153a84;
}

.basigi-schedule-filter-card p {
    color: #506691;
}

.basigi-schedule-filter-field {
    min-width: 260px;
}

.basigi-schedule-filter-field .form-label {
    margin-bottom: 4px;
    color: #3e5888;
    font-weight: 600;
}

.basigi-schedule-filter-field .form-select {
    border-color: #c9d9fb;
    color: #1c3b78;
    font-weight: 600;
}

.basigi-schedule-panel {
    display: none;
}

.basigi-schedule-panel.active {
    display: block;
}

.basigi-schedule-class-card {
    border: 1px solid #e3e9f8;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--basigi-shadow);
    padding: 14px;
}

.basigi-schedule-class-card h5 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #123f95;
}

.basigi-schedule-table {
    margin: 0;
}

.basigi-schedule-table thead th {
    background: linear-gradient(90deg, #1f55bf 0%, #3f7be0 100%);
    color: #fff;
    border: none;
    font-weight: 700;
}

.basigi-schedule-table tbody td {
    border-color: #e6edfb;
    color: #32496f;
    vertical-align: middle;
}

.basigi-mk-hero {
    background:
        radial-gradient(circle at 84% 16%, rgba(245, 185, 33, 0.24) 0%, rgba(245, 185, 33, 0) 36%),
        linear-gradient(130deg, #082a66 0%, #0a3d91 48%, #165bcf 100%);
    color: #fff;
    padding: 58px 0 64px;
}

.basigi-mk-hero .breadcrumb-basigi {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.basigi-mk-hero .breadcrumb-basigi a {
    color: #fff;
}

.basigi-mk-hero .breadcrumb-basigi a:hover {
    color: #ffe8a1;
}

.basigi-mk-hero h1 {
    font-size: clamp(1.8rem, 3.8vw, 2.7rem);
    font-weight: 800;
    margin: 0 0 10px;
}

.basigi-mk-hero p {
    margin: 0;
    color: #deebff;
}

.basigi-mk-card {
    background: #fff;
    border: 1px solid #e5eaf7;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--basigi-shadow);
}

.basigi-mk-tabs {
    border-bottom: 1px solid #dae4fb;
    gap: 4px;
}

.basigi-mk-tabs .nav-link {
    border: none;
    color: #384967;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 10px 16px;
}

.basigi-mk-tabs .nav-link.active {
    color: var(--basigi-blue);
    border-bottom: 3px solid var(--basigi-blue);
    background: #f5f9ff;
}

.basigi-mk-tab-content {
    padding-top: 20px;
}

.basigi-mk-tab-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #122b57;
    margin-bottom: 12px;
}

.basigi-mk-block {
    background: #f7f9fe;
    border: 1px solid #e4ebfa;
    border-radius: 12px;
    padding: 18px;
}

.basigi-mk-block p,
.basigi-mk-block li {
    color: #334769;
    line-height: 1.7;
}

.basigi-mk-rps-table thead th {
    background: linear-gradient(90deg, #1f55bf 0%, #3f7be0 100%);
    color: #fff;
    border: none;
    font-weight: 700;
}

.basigi-mk-rps-table tbody td {
    border-color: #e6edfb;
    color: #32496f;
    vertical-align: middle;
}

.basigi-video-course-hero {
    background:
        radial-gradient(circle at 84% 16%, rgba(245, 185, 33, 0.24) 0%, rgba(245, 185, 33, 0) 36%),
        linear-gradient(130deg, #082a66 0%, #0a3d91 48%, #165bcf 100%);
    color: #fff;
    padding: 52px 0 58px;
}

.basigi-video-course-hero .breadcrumb-basigi {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.basigi-video-course-hero .breadcrumb-basigi a {
    color: #fff;
}

.basigi-video-course-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
}

.basigi-video-course-hero p {
    margin: 0;
    color: #dce8ff;
}

.basigi-video-frame-card {
    border: 1px solid #dbe6fb;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: var(--basigi-shadow);
}

.basigi-video-content-card {
    border: 1px solid #e5ebfa;
    border-radius: 14px;
    background: #fff;
    padding: 20px;
    box-shadow: var(--basigi-shadow);
}

.basigi-video-content-card h3 {
    font-size: 1.24rem;
    font-weight: 700;
    color: #122b57;
}

.basigi-video-content-card p,
.basigi-video-content-card li {
    color: #334769;
}

.basigi-video-playlist-card {
    border: 1px solid #e5ebfa;
    border-radius: 14px;
    background: #fff;
    padding: 16px;
    box-shadow: var(--basigi-shadow);
    max-height: 720px;
    display: flex;
    flex-direction: column;
}

.basigi-video-playlist-card h5 {
    margin: 0 0 12px;
    font-weight: 700;
    color: #123c93;
}

.basigi-video-playlist-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding-right: 4px;
}

.basigi-video-playlist-item {
    display: flex;
    gap: 10px;
    border: 1px solid #e3ebfb;
    border-radius: 10px;
    padding: 8px;
    color: #243d6d;
    background: #fff;
}

.basigi-video-playlist-item:hover {
    border-color: #c1d5fb;
    background: #f4f8ff;
}

.basigi-video-playlist-item.active {
    border-color: #93b6f4;
    background: #ebf3ff;
}

.basigi-video-playlist-item .thumb {
    width: 130px;
    aspect-ratio: 16 / 10;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.basigi-video-playlist-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basigi-video-playlist-item .thumb span {
    position: absolute;
    right: 6px;
    bottom: 6px;
    background: rgba(0, 0, 0, 0.74);
    color: #fff;
    border-radius: 4px;
    font-size: 0.72rem;
    padding: 1px 6px;
}

.basigi-video-playlist-item .meta .title {
    font-weight: 700;
    line-height: 1.35;
    font-size: 0.88rem;
    color: #1f355e;
    margin-bottom: 4px;
}

.basigi-video-playlist-item .meta small {
    color: #607398;
    font-size: 0.78rem;
}

.basigi-sidig-hero {
    background:
        radial-gradient(circle at 78% 22%, rgba(245, 185, 33, 0.22) 0%, rgba(245, 185, 33, 0) 34%),
        linear-gradient(130deg, #082a66 0%, #0a3d91 48%, #165bcf 100%);
    color: #fff;
    padding: 42px 0 54px;
}

.basigi-sidig-hero .breadcrumb-basigi {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 12px;
}

.basigi-sidig-hero .breadcrumb-basigi a {
    color: #fff;
}

.basigi-sidig-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 3.6vw, 2.55rem);
    font-weight: 800;
}

.basigi-sidig-hero p {
    margin: 0;
    color: #eef2ff;
}

.basigi-sidig-main-card {
    border: 1px solid #e5eaf7;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--basigi-shadow);
    padding: 16px;
}

.basigi-sidig-player {
    border-radius: 10px;
    overflow: hidden;
    background: #101828;
}

.basigi-sidig-tabs {
    margin-top: 16px;
    margin-bottom: 12px;
    gap: 8px;
}

.basigi-sidig-tabs .nav-link {
    border-radius: 999px;
    color: #394e75;
    font-weight: 600;
    background: #eef3ff;
    padding: 8px 14px;
}

.basigi-sidig-tabs .nav-link.active {
    background: linear-gradient(90deg, #0a3d91 0%, #165bcf 100%);
    color: #fff;
}

.basigi-sidig-tab-content {
    padding: 4px 6px 8px;
}

.basigi-sidig-tab-content h4 {
    font-size: 1.2rem;
    color: #122b57;
    margin-bottom: 10px;
    font-weight: 700;
}

.basigi-sidig-tab-content p,
.basigi-sidig-tab-content li {
    color: #334769;
}

.basigi-check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.basigi-check-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.basigi-check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #35a06f;
    font-weight: 700;
}

.basigi-activity-list .item {
    border-bottom: 1px dashed #d7e2f8;
    padding: 10px 0;
}

.basigi-activity-list .item:last-child {
    border-bottom: none;
}

.basigi-activity-list .title {
    font-weight: 600;
    color: #1e355f;
}

.basigi-activity-list small {
    color: #64789c;
}

.basigi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf0ff;
    color: #1f57be;
    font-size: 1.35rem;
}

.basigi-sidig-side-card {
    border: 1px solid #d8e2f7;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--basigi-shadow);
    padding: 14px;
    position: sticky;
    top: 98px;
}

.basigi-sidig-side-card .preview-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.basigi-sidig-side-card .preview-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.basigi-sidig-side-card .preview-thumb span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.68);
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-open-course {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    padding: 10px 12px;
    background: linear-gradient(90deg, #0a3d91 0%, #165bcf 100%);
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.btn-open-course:hover {
    color: #fff;
    opacity: 0.92;
}

.course-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-meta li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #dce5f9;
}

.course-meta li:last-child {
    border-bottom: none;
}

.course-meta li span {
    color: #6a7da0;
    font-size: 0.9rem;
}

.course-meta li strong {
    color: #183c80;
    font-size: 0.9rem;
}

.basigi-rps-download {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.05rem;
    text-decoration: underline;
}

.basigi-rps-frame-wrap {
    border: 1px solid #d8e2f7;
    border-radius: 10px;
    overflow: hidden;
    background: #111827;
}

.basigi-rps-frame {
    width: 100%;
    height: 760px;
    border: 0;
    display: block;
    background: #1f2937;
}

.basigi-prodi-card {
    background: #fff;
    border: 1px solid #e5eaf7;
    border-radius: 16px;
    padding: 26px;
    box-shadow: var(--basigi-shadow);
}

.basigi-prodi-meta {
    display: grid;
    gap: 10px;
}

.basigi-prodi-meta div {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px;
}

.basigi-prodi-meta span {
    color: #5a6683;
}

.basigi-prodi-meta strong {
    color: #1b2d4b;
}

.basigi-prodi-badge {
    border-radius: 14px;
    background: linear-gradient(160deg, #f2f7ff 0%, #ebf2ff 100%);
    border: 1px solid #dce8ff;
    padding: 16px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.basigi-prodi-badge span {
    display: inline-block;
    background: #ffd76b;
    color: #583b00;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 700;
    font-size: 0.8rem;
}

.basigi-prodi-badge h5 {
    margin: 8px 0 0;
    font-weight: 800;
    font-size: 1.3rem;
    color: #103c93;
}

.basigi-prodi-tabs {
    border-bottom: 1px solid #dae4fb;
    gap: 4px;
}

.basigi-prodi-tabs .nav-link {
    border: none;
    color: #384967;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 13px;
}

.basigi-prodi-tabs .nav-link.active {
    color: var(--basigi-blue);
    border-bottom: 3px solid var(--basigi-blue);
    background: #f5f9ff;
}

.basigi-prodi-tab-content {
    padding-top: 20px;
}

.basigi-prodi-tab-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #122b57;
    margin-bottom: 12px;
}

.basigi-prodi-tab-content p,
.basigi-prodi-tab-content li {
    color: #334769;
    line-height: 1.7;
}

.basigi-prodi-summary-table thead th {
    background: #f3f7ff;
    color: #163f9a;
    border-bottom: 1px solid #d5e0f8;
}

.basigi-prodi-summary-table tbody td:first-child {
    font-weight: 700;
    color: #103c93;
}

.basigi-rekap-cpl-table {
    margin: 0;
}

.basigi-rekap-cpl-table thead th {
    background: linear-gradient(90deg, #0a3d91 0%, #165bcf 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

.basigi-rekap-cpl-table tbody td {
    border-color: #e6edfb;
    color: #2f456d;
    text-align: center;
    vertical-align: middle;
}

.basigi-rekap-cpl-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #163f9a;
}

.basigi-rekap-course-link {
    color: #0f3c93;
    font-weight: 700;
}

.basigi-rekap-course-link:hover {
    color: #0a2f75;
    text-decoration: underline;
}

.basigi-rekap-cpl-table tbody td:nth-child(2) {
    font-weight: 600;
}

.basigi-rekap-cpl-table tbody td:last-child {
    font-weight: 700;
    color: #103c93;
}

.basigi-prodi-mini-card {
    border: 1px solid #e4ebfa;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    transition: all 0.2s;
}

.basigi-prodi-mini-card:hover {
    border-color: #bcd0ff;
    box-shadow: 0 8px 20px rgba(10, 61, 145, 0.08);
}

.basigi-prodi-mini-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #142f5f;
    margin: 0 0 8px;
}

.basigi-prodi-mini-card p {
    margin: 0;
    color: #51658d;
}

.basigi-cpl-chart-card {
    border: 1px solid #e4ebfa;
    border-radius: 12px;
    padding: 14px;
    background: #f9fbff;
}

.basigi-cpl-chart-card h5 {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #153b8e;
}

.basigi-cpl-chart-card canvas {
    width: 100% !important;
    height: 260px !important;
}

.basigi-cpl-item {
    border-bottom: 1px solid #e9eefb;
    padding-bottom: 18px;
}

.basigi-cpl-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.basigi-cpl-subtitle {
    margin-top: 8px;
    margin-bottom: 6px;
    font-style: italic;
    color: #4e648f;
    font-weight: 600;
}

.basigi-cpl-course-list {
    columns: 2;
    column-gap: 22px;
}

.basigi-cpl-course-list li {
    break-inside: avoid;
}

.basigi-prodi-kurikulum-row {
    border: 1px solid #e6edfb;
    border-radius: 10px;
    background: #f9fbff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.basigi-prodi-kurikulum-row span {
    color: #32486f;
}

.basigi-prodi-kurikulum-row strong {
    color: #0c3d98;
}

.basigi-kurikulum-filter {
    max-width: 360px;
}

.basigi-kurikulum-filter .form-label {
    color: #435b84;
    font-weight: 600;
}

.basigi-kurikulum-filter .form-select {
    border-color: #c9d9fb;
    color: #1c3b78;
    font-weight: 600;
}

.basigi-kurikulum-year-panel {
    display: none;
}

.basigi-kurikulum-year-panel.active {
    display: block;
}

.basigi-kurikulum-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #14397f;
    margin: 10px 0 18px;
}

.basigi-kurikulum-semester {
    border: 1px solid #e2eafc;
    border-radius: 12px;
    padding: 14px;
    background: #fbfdff;
    margin-bottom: 16px;
}

.basigi-kurikulum-semester h5 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f387e;
}

.basigi-kurikulum-table {
    margin: 0;
}

.basigi-kurikulum-table thead th {
    background: linear-gradient(90deg, #1f55bf 0%, #3f7be0 100%);
    color: #fff;
    border: none;
    font-weight: 700;
}

.basigi-kurikulum-table tbody td {
    border-color: #e6edfb;
    color: #32496f;
    vertical-align: middle;
}

.basigi-kurikulum-table tbody td:first-child {
    font-weight: 700;
    color: #123c93;
}

.basigi-kurikulum-table tbody td:nth-child(3),
.basigi-kurikulum-table tbody td:last-child {
    text-align: center;
    font-weight: 600;
}

/* Video Detail */
.basigi-video-player {
    aspect-ratio: 16/9;
    border-radius: var(--basigi-radius);
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: var(--basigi-shadow);
}

.basigi-video-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.basigi-video-player .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.basigi-video-player .play-overlay .play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--basigi-gold);
    color: var(--basigi-blue-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.25s;
    box-shadow: 0 10px 30px rgba(245, 185, 33, 0.5);
}

.basigi-video-player .play-overlay .play-btn:hover {
    transform: scale(1.08);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .basigi-hero {
        padding: 60px 0 80px;
        text-align: center;
    }

    .basigi-hero .basigi-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .basigi-hero .basigi-search {
        margin-left: auto;
        margin-right: auto;
    }

    .basigi-hero h1 {
        font-size: 2.8rem;
    }

    .basigi-navbar .basigi-brand-text small {
        display: none;
    }

    .basigi-hero .basigi-hero-visual {
        margin-top: 40px;
    }

    .basigi-detail-sidebar {
        position: static;
        margin-top: 24px;
    }

    .basigi-sidig-side-card {
        position: static;
    }

    .basigi-prodi-dropdown .basigi-mega-menu {
        width: 100%;
        margin-top: 0;
    }

    .basigi-mega-faculty-list {
        max-height: 240px;
        border-right: none;
        border-bottom: 1px solid #e4ecff;
    }

    .basigi-mega-links {
        grid-template-columns: 1fr;
    }

    .basigi-prodi-meta div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .basigi-cpl-course-list {
        columns: 1;
    }

    .basigi-kurikulum-semester h5 {
        font-size: 1.2rem;
    }

    .basigi-schedule-filter-card {
        align-items: stretch;
    }

    .basigi-schedule-filter-field {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .basigi-topbar {
        font-size: 0.78rem;
    }

    .basigi-topbar .basigi-topbar-meta span,
    .basigi-topbar .basigi-topbar-meta a {
        margin-right: 10px;
    }

    .basigi-section {
        padding: 48px 0;
    }

    .basigi-section-header h2 {
        font-size: 1.6rem;
    }

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

    .basigi-hero .basigi-hero-subtitle {
        font-size: 1rem;
    }

    .basigi-stats {
        padding: 36px 18px;
    }

    .basigi-stat-item .value {
        font-size: 1.8rem;
    }

    .basigi-cta {
        padding: 32px 22px;
    }

    .basigi-cta h3 {
        font-size: 1.4rem;
    }

    .basigi-prodi-board {
        padding: 14px;
    }

    .basigi-detail-hero h1 {
        font-size: 1.8rem;
    }

    .basigi-detail-content {
        padding: 22px;
    }
}

@media (max-width: 575.98px) {
    .basigi-topbar .basigi-topbar-meta {
        display: none;
    }

    .basigi-hero .basigi-hero-btns .btn {
        display: block;
        width: 100%;
        margin: 0 0 10px;
    }
}
