/* ===================================================================
   PPDB ONLINE - MAIN STYLESHEET
   SMA Unggulan Nusantara
   =================================================================== */

/* ===================================================================
   1. CSS VARIABLES (COLOR CONFIGURATION)
   =================================================================== */
:root {
    /* Default: Hijau */
    --primary-color: #1b7d4a;
    --primary-color-rgb: 27, 125, 74;
    /* RGB values for rgba() usage */
    --primary-light: #2ca05e;
    --accent-color: #ffca28;
    /* Emas/Kuning */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --primary-color-rgb: 27, 125, 74;
}

/* ===================================================================
   2. GLOBAL STYLES
   =================================================================== */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

/* ===================================================================
   3. BOOTSTRAP BUTTON OVERRIDES - Premium Styling
   =================================================================== */

/* ----- Button Color Variables ----- */
:root {
    /* Primary - uses theme color variables */
    --btn-primary: var(--primary-color);
    --btn-primary-hover: var(--primary-light);
    --btn-primary-shadow: rgba(27, 125, 74, 0.4);

    /* Secondary (Gray) */
    --btn-secondary: #6c757d;
    --btn-secondary-hover: #5a6268;
    --btn-secondary-shadow: rgba(108, 117, 125, 0.4);

    /* Success (Green) */
    --btn-success: #198754;
    --btn-success-hover: #157347;
    --btn-success-shadow: rgba(25, 135, 84, 0.4);

    /* Danger (Red) */
    --btn-danger: #dc3545;
    --btn-danger-hover: #bb2d3b;
    --btn-danger-shadow: rgba(220, 53, 69, 0.4);

    /* Warning (Yellow) */
    --btn-warning: #ffc107;
    --btn-warning-hover: #e0a800;
    --btn-warning-shadow: rgba(255, 193, 7, 0.4);

    /* Info (Cyan) */
    --btn-info: #0dcaf0;
    --btn-info-hover: #0bacce;
    --btn-info-shadow: rgba(13, 202, 240, 0.4);

    /* Light */
    --btn-light: #f8f9fa;
    --btn-light-hover: #e2e6ea;
    --btn-light-shadow: rgba(248, 249, 250, 0.4);

    /* Dark */
    --btn-dark: #212529;
    --btn-dark-hover: #1c1f23;
    --btn-dark-shadow: rgba(33, 37, 41, 0.4);
}

/* ----- Base Button Styles ----- */
.btn {
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* ===== PRIMARY BUTTON ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--btn-primary) 0%, var(--btn-primary-hover) 100%) !important;
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    border: none !important;
    box-shadow: 0 4px 15px var(--btn-primary-shadow);
}

.btn-primary:hover {
    background-position: 100% 50% !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-primary-shadow) !important;
}

.btn-primary:focus {
    box-shadow: 0 0 0 4px rgba(27, 125, 74, 0.25), 0 4px 15px var(--btn-primary-shadow) !important;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px var(--btn-primary-shadow) !important;
}

/* ===== SECONDARY BUTTON ===== */
.btn-secondary {
    background: linear-gradient(135deg, var(--btn-secondary) 0%, var(--btn-secondary-hover) 100%) !important;
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    border: none !important;
    box-shadow: 0 4px 15px var(--btn-secondary-shadow);
}

.btn-secondary:hover {
    background-position: 100% 50% !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-secondary-shadow) !important;
}

.btn-secondary:focus {
    box-shadow: 0 0 0 4px rgba(108, 117, 125, 0.25), 0 4px 15px var(--btn-secondary-shadow) !important;
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px var(--btn-secondary-shadow) !important;
}

/* ===== SUCCESS BUTTON ===== */
.btn-success {
    background: linear-gradient(135deg, var(--btn-success) 0%, var(--btn-success-hover) 100%) !important;
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    border: none !important;
    box-shadow: 0 4px 15px var(--btn-success-shadow);
}

.btn-success:hover {
    background-position: 100% 50% !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-success-shadow) !important;
}

.btn-success:focus {
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.25), 0 4px 15px var(--btn-success-shadow) !important;
}

.btn-success:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px var(--btn-success-shadow) !important;
}

/* ===== DANGER BUTTON ===== */
.btn-danger {
    background: linear-gradient(135deg, var(--btn-danger) 0%, var(--btn-danger-hover) 100%) !important;
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    border: none !important;
    box-shadow: 0 4px 15px var(--btn-danger-shadow);
}

.btn-danger:hover {
    background-position: 100% 50% !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-danger-shadow) !important;
}

.btn-danger:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.25), 0 4px 15px var(--btn-danger-shadow) !important;
}

.btn-danger:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px var(--btn-danger-shadow) !important;
}

/* ===== WARNING BUTTON ===== */
.btn-warning {
    background: linear-gradient(135deg, var(--btn-warning) 0%, var(--btn-warning-hover) 100%) !important;
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    border: none !important;
    color: #212529 !important;
    box-shadow: 0 4px 15px var(--btn-warning-shadow);
}

.btn-warning:hover {
    background-position: 100% 50% !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-warning-shadow) !important;
    color: #212529 !important;
}

.btn-warning:focus {
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.25), 0 4px 15px var(--btn-warning-shadow) !important;
}

.btn-warning:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px var(--btn-warning-shadow) !important;
}

/* ===== INFO BUTTON ===== */
.btn-info {
    background: linear-gradient(135deg, var(--btn-info) 0%, var(--btn-info-hover) 100%) !important;
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    border: none !important;
    color: #212529 !important;
    box-shadow: 0 4px 15px var(--btn-info-shadow);
}

.btn-info:hover {
    background-position: 100% 50% !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-info-shadow) !important;
    color: #212529 !important;
}

.btn-info:focus {
    box-shadow: 0 0 0 4px rgba(13, 202, 240, 0.25), 0 4px 15px var(--btn-info-shadow) !important;
}

.btn-info:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px var(--btn-info-shadow) !important;
}

/* ===== LIGHT BUTTON ===== */
.btn-light {
    background: linear-gradient(135deg, var(--btn-light) 0%, var(--btn-light-hover) 100%) !important;
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    border: 1px solid #dee2e6 !important;
    color: #212529 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-light:hover {
    background-position: 100% 50% !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    color: #212529 !important;
}

.btn-light:focus {
    box-shadow: 0 0 0 4px rgba(248, 249, 250, 0.5), 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.btn-light:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* ===== DARK BUTTON ===== */
.btn-dark {
    background: linear-gradient(135deg, var(--btn-dark) 0%, var(--btn-dark-hover) 100%) !important;
    background-size: 200% 200% !important;
    background-position: 0% 50% !important;
    border: none !important;
    box-shadow: 0 4px 15px var(--btn-dark-shadow);
}

.btn-dark:hover {
    background-position: 100% 50% !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-dark-shadow) !important;
}

.btn-dark:focus {
    box-shadow: 0 0 0 4px rgba(33, 37, 41, 0.25), 0 4px 15px var(--btn-dark-shadow) !important;
}

.btn-dark:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px var(--btn-dark-shadow) !important;
}

/* ===================================================================
   OUTLINE BUTTON VARIANTS
   =================================================================== */

/* ----- Outline Base Style ----- */
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-light,
.btn-outline-dark {
    background: transparent !important;
    border-width: 2px !important;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== OUTLINE PRIMARY ===== */
.btn-outline-primary {
    color: var(--btn-primary) !important;
    border-color: var(--btn-primary) !important;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--btn-primary) 0%, var(--btn-primary-hover) 100%) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-primary-shadow) !important;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 4px rgba(27, 125, 74, 0.25) !important;
}

/* ===== OUTLINE SECONDARY ===== */
.btn-outline-secondary {
    color: var(--btn-secondary) !important;
    border-color: var(--btn-secondary) !important;
}

.btn-outline-secondary:hover {
    background: linear-gradient(135deg, var(--btn-secondary) 0%, var(--btn-secondary-hover) 100%) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-secondary-shadow) !important;
}

.btn-outline-secondary:focus {
    box-shadow: 0 0 0 4px rgba(108, 117, 125, 0.25) !important;
}

/* ===== OUTLINE SUCCESS ===== */
.btn-outline-success {
    color: var(--btn-success) !important;
    border-color: var(--btn-success) !important;
}

.btn-outline-success:hover {
    background: linear-gradient(135deg, var(--btn-success) 0%, var(--btn-success-hover) 100%) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-success-shadow) !important;
}

.btn-outline-success:focus {
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.25) !important;
}

/* ===== OUTLINE DANGER ===== */
.btn-outline-danger {
    color: var(--btn-danger) !important;
    border-color: var(--btn-danger) !important;
}

.btn-outline-danger:hover {
    background: linear-gradient(135deg, var(--btn-danger) 0%, var(--btn-danger-hover) 100%) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-danger-shadow) !important;
}

.btn-outline-danger:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.25) !important;
}

/* ===== OUTLINE WARNING ===== */
.btn-outline-warning {
    color: var(--btn-warning-hover) !important;
    border-color: var(--btn-warning) !important;
}

.btn-outline-warning:hover {
    background: linear-gradient(135deg, var(--btn-warning) 0%, var(--btn-warning-hover) 100%) !important;
    color: #212529 !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-warning-shadow) !important;
}

.btn-outline-warning:focus {
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.25) !important;
}

/* ===== OUTLINE INFO ===== */
.btn-outline-info {
    color: var(--btn-info-hover) !important;
    border-color: var(--btn-info) !important;
}

.btn-outline-info:hover {
    background: linear-gradient(135deg, var(--btn-info) 0%, var(--btn-info-hover) 100%) !important;
    color: #212529 !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-info-shadow) !important;
}

.btn-outline-info:focus {
    box-shadow: 0 0 0 4px rgba(13, 202, 240, 0.25) !important;
}

/* ===== OUTLINE LIGHT ===== */
.btn-outline-light {
    color: var(--btn-light) !important;
    border-color: var(--btn-light) !important;
}

.btn-outline-light:hover {
    background: var(--btn-light) !important;
    color: #212529 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 249, 250, 0.3) !important;
}

.btn-outline-light:focus {
    box-shadow: 0 0 0 4px rgba(248, 249, 250, 0.25) !important;
}

/* ===== OUTLINE DARK ===== */
.btn-outline-dark {
    color: var(--btn-dark) !important;
    border-color: var(--btn-dark) !important;
}

.btn-outline-dark:hover {
    background: linear-gradient(135deg, var(--btn-dark) 0%, var(--btn-dark-hover) 100%) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-dark-shadow) !important;
}

.btn-outline-dark:focus {
    box-shadow: 0 0 0 4px rgba(33, 37, 41, 0.25) !important;
}

/* ===================================================================
   BUTTON SIZE VARIANTS
   =================================================================== */
.btn-lg {
    padding: 0.8rem 1.75rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.875rem;
    border-radius: 8px;
}

/* ===================================================================
   DISABLED STATE FOR ALL BUTTONS
   =================================================================== */
.btn:disabled,
.btn.disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}


/* Lead text styling - untuk teks deskripsi yang lebih nyaman dibaca */
.lead {
    font-size: 1.15rem !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    color: #555;
    letter-spacing: 0.2px;
}

/* Lead text di background putih/terang menggunakan text-muted */
.lead.text-muted {
    color: #6c757d !important;
}

/* Lead text di background gelap tetap putih dan kontras */
.text-white .lead,
section[style*="background-color"] .lead {
    color: inherit !important;
}

/* Responsive lead text */
@media (max-width: 768px) {
    .lead {
        font-size: 1.05rem !important;
        line-height: 1.65 !important;
    }
}

@media (max-width: 480px) {
    .lead {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

/* ===================================================================
   4. NAVBAR STYLES
   =================================================================== */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    .navbar-logo {
        height: 45px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        height: 40px;
    }

    .navbar-brand {
        font-size: 1rem;
    }
}


.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover i {
    transform: scale(1.05);
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
    background: rgba(var(--primary-color-rgb, 27, 125, 74), 0.08);
    padding: 8px 16px;
    border-radius: 8px;
    border-bottom: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link.active:hover {
    background: rgba(var(--primary-color-rgb, 27, 125, 74), 0.12);
    border-bottom-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Remove underline indicator - using border-bottom instead */
.nav-link.active::after {
    display: none;
}

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px;
    margin-top: 10px;
    min-width: 240px;
    animation: fadeInDown 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .dropdown-item {
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
}

.navbar-nav .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: 8px;
}

.navbar-nav .dropdown-item:hover::before {
    width: 100%;
}

.navbar-nav .dropdown-item i {
    color: var(--primary-color);
    font-size: 1.15rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.navbar-nav .dropdown-item:hover {
    color: white;
    transform: translateX(5px);
    background: transparent;
}

.navbar-nav .dropdown-item:hover i {
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.navbar-nav .dropdown-item:active {
    background: var(--primary-color);
    color: white;
}

.navbar-nav .dropdown-item:active i {
    color: white;
}

/* Active state for dropdown items - subtle indicator */
.navbar-nav .dropdown-item.active {
    background: rgba(var(--primary-color-rgb, 27, 125, 74), 0.1);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 13px;
    /* Adjusted to compensate for border */
}

.navbar-nav .dropdown-item.active i {
    color: var(--primary-color);
}

/* Disable ::before gradient effect for active items */
.navbar-nav .dropdown-item.active::before {
    display: none;
}

/* Hover state for active items - flat background only */
.navbar-nav .dropdown-item.active:hover {
    background: rgba(var(--primary-color-rgb, 27, 125, 74), 0.15);
    border-left-color: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(3px);
}

.navbar-nav .dropdown-item.active:hover i {
    color: var(--primary-color);
}

.navbar-nav .dropdown-divider {
    margin: 10px 0;
    border-color: rgba(0, 0, 0, 0.08);
    opacity: 0.5;
}

/* Dropdown Toggle Fix */
.navbar-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.4em;
    vertical-align: 0.15em;
    content: "";
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-bottom: 0;
    border-left: 0.35em solid transparent;
    transition: transform 0.3s ease;
}

/* Dropdown toggle arrow when active - make it VERY visible */
.navbar-nav .dropdown-toggle.active::after {
    border-top-color: var(--text-dark);
    opacity: 1;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.8));
}

/* Dropdown arrow rotation when open */
.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Ensure arrow is visible on hover */
.navbar-nav .dropdown-toggle:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile Dropdown Adjustments */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        box-shadow: none;
        background: linear-gradient(135deg, rgba(var(--primary-color-rgb, 27, 125, 74), 0.05) 0%, rgba(var(--primary-color-rgb, 27, 125, 74), 0.08) 100%);
        margin-top: 6px;
        margin-bottom: 4px;
        margin-left: 0;
        margin-right: 0;
        padding: 8px;
        border: 1px solid rgba(var(--primary-color-rgb, 27, 125, 74), 0.1);
        animation: none;
        border-radius: 14px;
    }

    .navbar-nav .dropdown-item {
        padding: 13px 18px;
        margin-bottom: 3px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .navbar-nav .dropdown-item:hover {
        transform: translateX(3px);
    }

    .navbar-nav .dropdown-item::before {
        border-radius: 10px;
    }

    .navbar-nav .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .navbar-nav .dropdown-divider {
        margin: 8px 0;
    }

    /* Dropdown toggle arrow styling for mobile */
    .navbar-nav .dropdown-toggle::after {
        border-top-width: 0.35em;
        border-right-width: 0.35em;
        border-left-width: 0.35em;
        margin-left: 0.4em;
    }

    /* Prevent menu from closing on mobile when clicking submenu */
    .navbar-nav .dropdown-menu.show {
        display: block;
    }
}

/* Mobile Navbar Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.9) 0%,
                rgba(248, 249, 250, 0.85) 100%);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-radius: 16px;
        padding: 24px;
        margin-top: 15px;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(255, 255, 255, 0.6) inset,
            0 1px 0 rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .navbar-nav {
        gap: 4px;
    }

    .nav-item {
        margin-bottom: 3px;
    }

    .nav-link {
        padding: 14px 18px !important;
        margin: 0;
        border-radius: 12px;
        transition: all 0.25s ease;
        font-size: 0.95rem;
    }

    .nav-link:hover {
        background-color: rgba(var(--primary-color-rgb, 27, 125, 74), 0.08);
    }

    .nav-link.active {
        background: rgba(var(--primary-color-rgb, 27, 125, 74), 0.12);
        color: var(--primary-color) !important;
        border-radius: 12px;
        border-bottom: 3px solid var(--primary-color);
        font-weight: 600;
    }

    /* Dropdown toggle active - consistent with main menu */
    .navbar-nav .dropdown-toggle.active::after {
        border-top-color: var(--primary-color);
        opacity: 1;
    }

    /* Remove underline indicator on mobile */
    .nav-link.active::after {
        display: none;
    }

    .btn-group-nav {
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
        padding: 0 18px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .btn-group-nav .btn-register,
    .btn-group-nav .btn-login {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
    }
}

.btn-login {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    border: none;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-register {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    background: transparent;
    transition: all 0.3s;
}

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

/* Tablet Navbar Styles (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .navbar .container {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Horizontal button layout for tablet */
    .btn-group-nav {
        flex-direction: row !important;
        gap: 10px !important;
        justify-content: space-between;
    }

    .btn-group-nav .btn-register,
    .btn-group-nav .btn-login {
        width: 48% !important;
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
    }

    /* Adjust nav item spacing for tablet */
    .nav-item {
        margin-bottom: 4px !important;
    }

    .nav-link {
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
    }

    .navbar-nav .dropdown-item {
        padding: 11px 16px !important;
        font-size: 0.9rem !important;
    }
}

/* Mobile Only Styles (< 768px) - Vertical buttons */
@media (max-width: 767px) {
    .btn-group-nav {
        flex-direction: column;
    }

    .btn-group-nav .btn-register,
    .btn-group-nav .btn-login {
        width: 100%;
    }

    /* Increase spacing for better touch targets on mobile */
    .nav-item {
        margin-bottom: 8px;
    }

    .nav-link {
        padding: 16px 20px !important;
    }

    .navbar-nav .dropdown-item {
        padding: 14px 20px !important;
    }
}

/* ===================================================================
   5. HERO SECTION
   =================================================================== */
.hero-section {
    padding: 140px 0 60px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
}

/* Responsive hero section padding */
@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 60px 0;
        text-align: center;
    }

    .hero-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }

    .hero-section .col-lg-6:first-child {
        padding-right: 15px;
        margin-bottom: 2rem;
    }

    .hero-section .d-flex {
        justify-content: center !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 110px 0 50px 0;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 40px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-img {
        max-width: 100%;
    }
}


.hero-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-badge {
    background-color: rgba(255, 202, 40, 0.2);
    color: #b68900;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Registration Status Indicator */
.registration-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

/* Active Status - Green with pulse animation */
.status-dot-active {
    background-color: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Inactive Status - Red without animation */
.status-dot-inactive {
    background-color: #ef4444;
}

.status-text {
    color: #b68900;
}

.status-text strong {
    font-weight: 700;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* ===================================================================
   FLOATING BADGES - Hero Image
   =================================================================== */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12),
        0 3px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Badge Positions - Floating Outwards */
.floating-badge.badge-1 {
    top: 15%;
    left: -25px;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    top: 10%;
    right: -35px;
    animation-delay: 0.5s;
}

.floating-badge.badge-3 {
    bottom: 15%;
    left: -15px;
    animation-delay: 1s;
}

/* Floating Animation */
@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Badge Icon Styles - More Subtle/Transparent */
.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,
            rgba(var(--primary-color-rgb), 0.15) 0%,
            rgba(var(--primary-color-rgb), 0.25) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.3;
}

.badge-subtitle {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive Floating Badges */
@media (max-width: 991px) {
    .floating-badge {
        padding: 10px 14px;
        border-radius: 14px;
    }

    .floating-badge.badge-1 {
        top: 5%;
        left: 2%;
    }

    .floating-badge.badge-2 {
        top: 5%;
        right: 2%;
    }

    .floating-badge.badge-3 {
        bottom: 5%;
        left: 2%;
    }

    .badge-icon {
        width: 38px;
        height: 38px;
    }

    .badge-icon i {
        font-size: 18px;
    }

    .badge-title {
        font-size: 12px;
    }

    .badge-subtitle {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .floating-badge {
        padding: 8px 12px;
        border-radius: 12px;
        position: absolute !important;
        display: flex !important;
        animation: floatBadgeMobile 4s ease-in-out infinite;
        min-width: 140px;
    }

    .floating-badge:hover {
        transform: scale(1.05);
    }

    .hero-image-wrapper {
        text-align: center;
        margin-bottom: 40px;
    }

    /* Mobile specific floating positions */
    .floating-badge.badge-1 {
        top: 5%;
        left: -10px;
        animation-delay: 0s;
    }

    .floating-badge.badge-2 {
        top: 20%;
        right: -10px;
        animation-delay: 1s;
    }

    .floating-badge.badge-3 {
        bottom: 10%;
        left: 20px;
        animation-delay: 2s;
    }

    @keyframes floatBadgeMobile {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    .badge-icon {
        width: 32px;
        height: 32px;
    }

    .badge-icon i {
        font-size: 15px;
    }

    .badge-title {
        font-size: 11px;
    }

    .badge-subtitle {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .floating-badge {
        padding: 6px 10px;
        min-width: 120px;
    }

    .floating-badge.badge-1 {
        top: 8%;
        left: -5px;
    }

    .floating-badge.badge-2 {
        top: 35%;
        right: -5px;
    }

    .floating-badge.badge-3 {
        bottom: 5%;
        left: 10px;
    }

    .badge-icon {
        width: 28px;
        height: 28px;
    }

    .badge-icon i {
        font-size: 13px;
    }

    .badge-title {
        font-size: 10px;
    }

    .badge-subtitle {
        font-size: 8px;
    }
}


/* Hero section column spacing */
.hero-section .col-lg-6:first-child {
    padding-right: 3rem;
}

@media (max-width: 991px) {
    .hero-section .col-lg-6:first-child {
        padding-right: 15px;
    }
}

/* Hero with Background Image */
.hero-media {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px 0;
    color: white;
}

.hero-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

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

/* Hero Media Responsive */
@media (max-width: 991px) {
    .hero-media {
        padding: 100px 0 60px 0;
        text-align: center;
    }

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

    .hero-media .lead {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-media {
        padding: 90px 0 50px 0;
    }

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

@media (max-width: 480px) {
    .hero-media {
        padding: 85px 0 40px 0;
    }

    .hero-media h1 {
        font-size: 1.5rem;
    }

    .hero-media .lead {
        font-size: 0.9rem;
    }
}

/* ===================================================================
   6. BREADCRUMB STYLES
   =================================================================== */
.breadcrumb-custom {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.65rem 1.25rem;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--accent-color);
    font-weight: 500;
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "/";
    font-size: 0.9rem;
    padding: 0 0.6rem;
}

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

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================================================
   7. QUICK ACCESS CARDS
   =================================================================== */
.quick-access-card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.quick-access-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.quick-access-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.quick-access-card:hover::after {
    opacity: 0.03;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color), transparent 90%) 0%, color-mix(in srgb, var(--primary-light), transparent 90%) 100%);
    color: var(--primary-color);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem auto;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb, 27, 125, 74), 0.1);
}

.quick-access-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(var(--primary-color-rgb, 27, 125, 74), 0.3);
}

.quick-access-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.quick-access-card:hover h5 {
    color: var(--primary-color);
}

/* ===================================================================
   8. NEWS SECTION
   =================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.news-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.news-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.news-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.news-card .card-body {
    padding: 2rem !important;
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date i {
    color: var(--primary-color);
}

.news-card .card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    color: #222;
    transition: color 0.3s ease;
}

.news-card:hover .card-title {
    color: var(--primary-color);
}

.news-card .btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
    padding: 8px 24px;
}

.news-card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Metadata Styling */
.news-meta-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.badge-cat {
    background-color: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===================================================================
   9. SAMBUTAN & AGENDA SECTION
   =================================================================== */
/* ===================================================================
   9. SAMBUTAN SECTION (V2: High Impact)
   =================================================================== */
.sambutan-v2-section {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.principal-v2-frame {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.frame-decoration-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: #eefdf5;
    border-radius: 40px;
    z-index: -1;
}

.frame-decoration-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border: 2px solid #1b7d4a;
    border-radius: 40px;
    opacity: 0.2;
    z-index: -1;
}

.image-inner-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.image-inner-wrapper img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.principal-v2-frame:hover img {
    transform: scale(1.08);
}

.principal-label-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
}

.quote-icon-v2 {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    color: #1b7d4a;
    opacity: 0.05;
    z-index: -1;
    line-height: 1;
}

.lead-serif-v2 {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c3e50;
    border-left: 4px solid #1b7d4a;
    padding-left: 25px;
}

.stats-v2-row {
    background: #f8fafd;
    padding: 25px;
    border-radius: 25px;
    border: 1px solid rgba(27, 125, 74, 0.05);
}

.stat-v2-box {
    flex: 1;
    min-width: 120px;
}

.stat-v2-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1b7d4a;
    margin-bottom: 2px;
}

.stat-v2-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.separator-v2 {
    width: 1px;
    height: 50px;
    background: #e0e6ed;
    align-self: center;
    flex: 0 0 auto !important;
    min-width: auto !important;
}

.shadow-success-sm {
    box-shadow: 0 10px 25px rgba(27, 125, 74, 0.25);
}

@media (max-width: 991px) {
    .quote-icon-v2 {
        display: none;
    }

    .lead-serif-v2 {
        font-size: 1.1rem;
    }

    .separator-v2 {
        display: none;
    }

    .stat-v2-box {
        text-align: center;
        min-width: 100%;
        padding: 10px 0;
    }
}

/* ===================================================================
   10. AGENDA SECTION (V2: Friendly & Modern)
   =================================================================== */
.agenda-v2-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f3f7;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.agenda-v2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(27, 125, 74, 0.1);
}

.agenda-v2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.date-badge-v2 {
    background: #eefdf5;
    color: #1b7d4a;
    width: 65px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.date-badge-v2 .day {
    font-size: 1.6rem;
    line-height: 1;
}

.date-badge-v2 .month {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.category-pill-v2 {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-pill-v2.academic {
    background: #e8f2ff;
    color: #2d81ff;
}

.category-pill-v2.event {
    background: #fff3e6;
    color: #ff922b;
}

.category-pill-v2.holiday {
    background: #ffebeb;
    color: #fa5252;
}

.agenda-v2-body {
    flex-grow: 1;
}

.agenda-v2-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #e9ecef;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .agenda-v2-card {
        padding: 25px;
    }
}

/* Agenda List Page Styles */
.agenda-v2-card.list-style {
    display: block;
    border-left: 5px solid transparent;
}

.agenda-v2-card.list-style:hover {
    border-left-color: #1b7d4a;
    transform: translateX(8px);
}

.agenda-filter-container .card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.agenda-filter-container .form-control,
.agenda-filter-container .form-select {
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.agenda-filter-container .form-control:focus,
.agenda-filter-container .form-select:focus {
    border-color: #1b7d4a;
    box-shadow: 0 0 10px rgba(27, 125, 74, 0.1);
}

.pagination-rounded .page-item {
    margin: 0 3px;
}

.pagination-rounded .page-link {
    border-radius: 12px !important;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #444;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.pagination-rounded .page-item.active .page-link {
    background-color: #1b7d4a;
    color: white;
    box-shadow: 0 8px 15px rgba(27, 125, 74, 0.2);
}

.pagination-rounded .page-link:hover {
    background-color: #f8fafd;
    color: #1b7d4a;
}

@media (max-width: 767px) {
    .agenda-v2-header.flex-row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .date-badge-v2 {
        width: 100%;
        height: auto;
        padding: 15px;
        flex-direction: row;
        gap: 15px;
        margin-bottom: 20px;
    }

    .date-badge-v2 .day {
        font-size: 2rem;
    }

    .agenda-v2-card.list-style:hover {
        transform: translateY(-5px);
    }
}

/* Agenda V2 Interaction Enhancements */
.btn-detail-v2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(27, 125, 74, 0.2);
    cursor: pointer;
}

.btn-detail-v2:hover {
    background-color: var(--primary-light);
    color: #ffffff;
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 12px 25px rgba(27, 125, 74, 0.3);
}

/* Premium Modal Design */
.modal-premium .modal-content {
    border: none;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-premium .modal-header {
    background: linear-gradient(135deg, #1b7d4a 0%, #2ca05e 100%);
    color: white;
    padding: 30px;
    border-bottom: none;
    position: relative;
}

.modal-premium .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-premium .modal-body {
    padding: 40px;
}

.agenda-detail-badge-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.agenda-detail-date {
    background: #eefdf5;
    color: #1b7d4a;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    min-width: 90px;
}

.agenda-detail-date .day-xl {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.agenda-detail-date .month-sm {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-grid-v2 {
    background: #f8fafd;
    border-radius: 25px;
    padding: 25px;
    margin-top: 30px;
}

.info-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

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

.info-icon-wrapper {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b7d4a;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.modal-premium .modal-footer {
    padding: 25px 40px;
    border-top: 1px solid #f1f3f5;
    background: #fcfdfe;
}

@media (max-width: 767px) {
    .modal-premium .modal-body {
        padding: 30px 20px;
    }
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #ebeef1;
    }
}

/* Stats Section V2 (Compact & Contrast) */
.stats-section-v2 {
    padding: 80px 0;
    background: #f8fafd;
    /* High contrast background */
    position: relative;
    z-index: 10;
}

.stat-box-v2 {
    background: #ffffff;
    padding: 30px 25px;
    /* Condensed padding */
    border-radius: 20px;
    /* Tighter corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-box-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 125, 74, 0.12);
    border-color: rgba(27, 125, 74, 0.2);
}

.stat-icon-v2 {
    width: 60px;
    /* Reduced size */
    height: 60px;
    background: #eefdf5;
    color: #1b7d4a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    /* Reduced icon size */
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.stat-box-v2:hover .stat-icon-v2 {
    background: #1b7d4a;
    color: #ffffff;
    transform: rotateY(180deg);
}

.stat-number-v2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    /* Reduced font size */
    font-weight: 800;
    color: #1b7d4a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-v2 {
    font-size: 0.85rem;
    /* Reduced label size */
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 767px) {
    .stat-number-v2 {
        font-size: 2.2rem;
    }

    .stat-box-v2 {
        padding: 30px 20px;
    }
}

/* ===================================================================
   10. SCHEDULE SECTION (JADWAL PENDAFTARAN)
   =================================================================== */
.schedule-section-styled {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Background Blobs (Dekorasi Bergerak) */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.08;
    z-index: 0;
    animation: moveBlob 20s infinite alternate;
}

@keyframes moveBlob {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.1) translate(20px, -20px);
    }
}

.blob-1 {
    background: var(--primary-color);
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
}

.blob-2 {
    background: var(--primary-light);
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -200px;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-header-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 1.8rem;
    border-bottom: none;
    position: relative;
}

.card-header-custom::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.icon-bg {
    background: rgba(255, 255, 255, 0.2);
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-body-custom {
    position: relative;
}

.date-display {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    border: 2px dashed #e9ecef;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}

.schedule-card:hover .date-display {
    border-color: var(--primary-color);
}

.border-dashed {
    border-style: dashed !important;
}

/* ===================================================================
   11. DETAIL POST PAGE STYLES
   =================================================================== */
.detail-header-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-meta-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.share-buttons button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: transform 0.2s;
}

.share-buttons button:hover {
    transform: translateY(-3px);
}

/* ===================================================================
   12. SIDEBAR STYLES
   =================================================================== */
.card-sidebar {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
}

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

.related-news-link {
    text-decoration: none;
    color: var(--text-dark);
}

.related-news-link:hover {
    color: var(--primary-color);
}

.badge-tag {
    background-color: #eee;
    color: #555;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    text-decoration: none;
}

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

/* ===================================================================
   13. MEDIA PAGE - TABLE STYLES
   =================================================================== */
.table-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.table-card .card-body {
    padding: 0 !important;
}

/* Controls (Search & Filter) */
.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.search-box,
.filter-box {
    border-radius: 20px;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
}

.search-box {
    padding: 0.6rem 1.2rem 0.6rem 2.5rem;
}

.search-box input {
    border: none;
    outline: none;
    width: 250px;
    color: #555;
}

.search-icon {
    color: #999;
}

.filter-box {
    padding: 0.6rem 2.5rem 0.6rem 1.5rem;
    width: 200px;
}

.filter-box select {
    border: none;
    outline: none;
    color: #555;
    width: 100%;
    cursor: pointer;
}

/* Table Styling (Native + Custom) */
.custom-table {
    margin-bottom: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #555;
}

/* Header Styling */
.custom-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border: none;
    padding: 1.2rem;
    font-size: 0.95rem;
}

/* Rounded Corners */
.custom-table thead tr:first-child th:first-child {
    border-top-left-radius: 20px;
}

.custom-table thead tr:first-child th:last-child {
    border-top-right-radius: 20px;
}

/* Body Styling */
.custom-table td {
    vertical-align: middle;
    padding: 1.2rem;
    color: #555;
    border-top: 1px solid #e9ecef;
    font-size: 0.95rem;
}

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

.custom-table tbody tr:hover {
    background-color: rgba(27, 125, 74, 0.05);
}

/* File Icons */
.file-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 15px;
    font-size: 1.2rem;
}

.file-name {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.file-meta {
    font-size: 0.8rem;
    color: #888;
}

/* Pagination Native JS Styling */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding-bottom: 2rem;
    gap: 5px;
}

.page-btn {
    background: white;
    border: 1px solid #e0e0e0;
    color: var(--text-dark);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
    background-color: #e9ecef;
    color: var(--primary-color);
}

.page-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-btn:disabled {
    color: #ccc;
    pointer-events: none;
    background: #f8f9fa;
}

/* ===================================================================
   14. FOOTER STYLES
   =================================================================== */
footer {
    background-color: color-mix(in srgb, var(--primary-color), black 20%);
    color: white;
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* ===================================================================
   15. FLOATING COLOR SWITCHER
   =================================================================== */
.theme-switcher-wrapper {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 9999;
}

.theme-btn {
    background: white;
    color: var(--text-dark);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px 0 0 5px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.2rem;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.theme-btn:hover {
    width: 60px;
    background-color: var(--bg-light);
}

.color-option {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #ddd;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.color-option:hover {
    transform: scale(1.2);
}

.color-option.active::after {
    content: '\f26b';
    /* Icon Check Bootstrap */
    font-family: 'bootstrap-icons';
    color: white;
    font-weight: bold;
}

.colors-panel {
    background: white;
    padding: 20px 15px;
    border-radius: 5px 0 0 5px;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
    display: none;
}

.theme-switcher-wrapper:hover .colors-panel {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================================================
   16. RESPONSIVE STYLES
   =================================================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding-top: 120px;
        text-align: center;
    }

    .hero-img {
        margin-top: 30px;
    }

    .btn-group-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 1rem;
    }

    .theme-switcher-wrapper {
        top: auto;
        bottom: 20px;
        right: 0;
    }

    .theme-switcher-wrapper:hover .colors-panel {
        bottom: 60px;
        top: auto;
    }

    .blob-1 {
        width: 300px;
        height: 300px;
    }

    .blob-2 {
        width: 300px;
        height: 300px;
    }

    /* Hero Media */
    .hero-media {
        padding: 120px 0 60px 0;
    }

    /* Detail Header */
    .detail-header-img {
        height: 250px;
    }

    /* Table Card */
    .table-card {
        margin-top: -30px;
        padding: 1rem;
    }

    .table-controls {
        flex-direction: column;
        gap: 15px;
    }

    .search-box,
    .filter-box {
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }
}

/* ===================================================================
   17. NEWS LIST PAGE STYLES (daftar-berita.html)
   =================================================================== */
.news-list-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 120px 0 80px 0;
    color: white;
    margin-bottom: 0;
}

.filter-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: -50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.filter-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.filter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(27, 125, 74, 0.1);
}

.btn-search {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-search:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-reset {
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-reset:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.results-info {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 50px;
}

.page-link-custom {
    background: white;
    border: 2px solid #e9ecef;
    color: var(--text-dark);
    border-radius: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}

.page-link-custom:hover {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.page-link-custom.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-link-custom.disabled {
    color: #ccc;
    pointer-events: none;
    background: #f8f9fa;
    border-color: #e9ecef;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state h4 {
    color: #666;
    margin-bottom: 10px;
}

.empty-state p {
    color: #999;
}

/* ===================================================================
   HERO CAROUSEL SECTION
   =================================================================== */
.hero-carousel-section {
    position: relative;
    margin-top: 0;
}

.hero-carousel-section .carousel {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item {
    height: 100%;
}

/* Slide Background */
.carousel-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay Gradient */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Custom Caption */
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    max-width: 650px;
    padding: 0 30px;
}

/* Hero Carousel Badge */
.hero-carousel-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero Carousel Title */
.hero-carousel-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Carousel Subtitle */
.hero-carousel-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hero Carousel Buttons Container */
.hero-carousel-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Primary Carousel Button */
.btn-carousel-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-carousel-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-carousel-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    color: white;
}

.btn-carousel-primary:hover::before {
    left: 100%;
}

/* Outline Carousel Button */
.btn-carousel-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.btn-carousel-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Carousel Indicators */
.hero-carousel-section .carousel-indicators {
    bottom: 40px;
    z-index: 3;
    gap: 8px;
}

.hero-carousel-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-carousel-section .carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: white;
    transform: scale(1.2);
}

.hero-carousel-section .carousel-indicators button:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    z-index: 3;
    opacity: 1;
}

.carousel-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-icon i {
    color: white;
    font-size: 1.25rem;
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset animation on slide change */
.carousel-item:not(.active) .hero-carousel-badge,
.carousel-item:not(.active) .hero-carousel-title,
.carousel-item:not(.active) .hero-carousel-subtitle,
.carousel-item:not(.active) .hero-carousel-buttons {
    animation: none;
    opacity: 0;
}

/* ===================================================================
   HERO CAROUSEL RESPONSIVE STYLES
   =================================================================== */

/* Tablets and smaller laptops */
@media (max-width: 991px) {
    .hero-carousel-section .carousel {
        height: 85vh;
        min-height: 550px;
    }

    .carousel-caption-custom {
        max-width: 100%;
        padding: 0 100px;
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-carousel-title {
        font-size: 2.5rem;
    }

    .hero-carousel-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-carousel-buttons {
        justify-content: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
    }

    .footer-contact-icon {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    footer:hover .footer-contact-icon {
        background: rgba(255, 255, 255, 0.1);
    }

    .carousel-control-icon {
        width: 45px;
        height: 45px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .hero-carousel-section .carousel {
        height: 100vh;
        min-height: 550px;
        max-height: none;
    }

    .hero-carousel-section .carousel-inner,
    .hero-carousel-section .carousel-item {
        height: 100%;
    }

    .carousel-caption-custom {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 25px;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px;
        /* offset untuk navbar */
    }

    .hero-carousel-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 1rem;
    }

    .hero-carousel-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }

    .hero-carousel-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .btn-carousel-primary,
    .btn-carousel-outline {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: auto;
        display: inline-flex;
    }

    .hero-carousel-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .hero-carousel-section .carousel-indicators {
        bottom: 20px;
        z-index: 10;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .carousel-caption-custom {
        padding: 0 20px;
        margin-top: 15px;
    }

    .hero-carousel-title {
        font-size: 1.5rem;
    }

    .hero-carousel-subtitle {
        font-size: 0.85rem;
    }

    .btn-carousel-primary,
    .btn-carousel-outline {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .hero-carousel-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .hero-carousel-buttons {
        gap: 8px;
    }

    .hero-carousel-section .carousel-indicators {
        bottom: 15px;
    }
}

/* ===================================================================
   18. RESPONSIVE PAGINATION AND FAQ
   =================================================================== */
@media (max-width: 576px) {

    /* Pagination Adjustment */
    .pagination-custom {
        gap: 4px;
        flex-wrap: wrap;
        /* Mencegah overflow jika halaman sangat banyak */
    }

    .page-link-custom {
        width: 38px;
        /* Sedikit lebih kecil agar muat */
        height: 38px;
        font-size: 0.9rem;
    }

    /* Accordion Adjustment */
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}