:root {
    --primary-gold: #0096F0;
    --primary-gold-dark: #0185d7;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

.bg-blue {
    background: var(--bg-light);
    color: #ffffff;
}

/* Top Announcement Bar */
.top-banner {
    background-color: #0096F0;
    font-size: 0.9rem;
}

/* Navbar Styling */
.navbar-brand .brand-bold {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Custom Modern Pill Tabs (Bootstrap 5 Override) */
.custom-nav-pills {
    background-color: #e2e8f0;
    border-radius: 50px;
    padding: 6px;
    gap: 8px;
    display: inline-flex;
}

.custom-nav-pills .nav-link {
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 600;
    padding: 10px 24px;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.custom-nav-pills .nav-link:hover:not(.active) {
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.5);
}

.custom-nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark)) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(197, 168, 71, 0.35);
}

/* Cards & Shadows */
.card-custom {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.card-custom:hover {
    transform: translateY(-4px);
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Section Styling */
.testimonial-section {
    padding: 80px 0;
}

.testimonial-title {
    font-weight: 700;
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 50px;
}

/* Card Styling */
.testimonial-card {
    border: none;
    background: transparent;
    padding: 0 15px;
}

/* Bintang Rating */
.star-rating {
    color: #f59e0b;
    /* Warna kuning emas */
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Teks Testimoni */
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 25px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Nama & Jabatan */
.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.85rem;
    color: #94a3b8;
    /* Abu-abu lembut */
    font-weight: 500;
}

/* Tombol Navigasi Kanan (Next) */
.btn-next-custom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #3b82f6;
    /* Warna biru */
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
    position: absolute;
    right: -15px;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
}

.btn-next-custom:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

/* Pagination Indicators (Dots) */
.custom-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 45px;
}

.custom-indicators .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-indicators .dot.active {
    background-color: #3b82f6;
    /* Dot aktif biru */
    width: 10px;
    height: 10px;
}