/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Top Bar */
.top-bar {
    background: #4A0A12;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.top-bar a {
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #C5A059;
}

/* Navbar */
.navbar-scrolled {
    background-color: rgba(74, 10, 18, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

/* Premium Card Rounded */
.premium-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

.premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #C5A059, #E2C792);
    transition: width 0.4s ease;
}

.premium-card:hover::after {
    width: 100%;
}

.premium-card:hover {
    border-color: #C5A059;
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(107, 15, 26, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

/* Program Section Background */
.program-section {
    position: relative;
    background: linear-gradient(135deg, #6B0F1A 0%, #4A0A12 50%, #2A060A 100%);
    overflow: hidden;
}

.program-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../bg4.jpg');
    background-size: 580px 580px;
    opacity: 0.1;
}

.program-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.program-content {
    position: relative;
    z-index: 1;
}

.program-content .section-title {
    color: #FDFDFD;
}

.program-content .section-subtitle {
    color: #C5A059;
}

.program-content .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* Awards Section Background */
/* ===== AWARDS SECTION ===== */
.awards-section {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    overflow: hidden;
    padding: 80px 0;
}

/* .news-card {
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
} */

.section-title-premium {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Times New Roman', serif;
}

.section-title-premium-aa {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #020101;
    font-family: 'Times New Roman', serif;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6B0F1A, #D4AF37, #6B0F1A);
    border-radius: 2px;
}

.section-subtitle {
    color: #D4AF37;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ===== AWARD LIST ===== */
.award-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.award-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6B0F1A, #D4AF37);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.award-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(107, 15, 26, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.award-item:hover::before {
    opacity: 1;
}

.award-item-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.award-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transition: all 0.3s ease;
}

.award-item:hover .award-icon {
    background: #6B0F1A;
    color: #D4AF37;
    transform: scale(1.05);
}

.award-icon.gold {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
}

.award-icon.silver {
    background: rgba(192, 192, 192, 0.15);
    color: #9ca3af;
}

.award-icon.bronze {
    background: rgba(205, 127, 50, 0.15);
    color: #CD7F32;
}

.award-item:hover .award-icon.gold {
    background: #6B0F1A;
    color: #D4AF37;
}

.award-item:hover .award-icon.silver {
    background: #4a4a4a;
    color: #C0C0C0;
}

.award-item:hover .award-icon.bronze {
    background: #6B3A2A;
    color: #CD7F32;
}

.award-info {
    flex: 1;
}

.award-title {
    font-size: 17px;
    font-weight: 700;
    color: #6B0F1A;
    font-family: 'Times New Roman', serif;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.award-item:hover .award-title {
    color: #D4AF37;
}

.award-title a {
    color: inherit;
    text-decoration: none;
}

.award-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.award-meta span {
    font-size: 13px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px;
}

.award-meta span i {
    font-size: 12px;
    color: #D4AF37;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.award-badge.gold {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    border-color: rgba(212, 175, 55, 0.3);
}

.award-badge.silver {
    background: rgba(192, 192, 192, 0.15);
    color: #6b7280;
    border-color: rgba(192, 192, 192, 0.3);
}

.award-badge.bronze {
    background: rgba(205, 127, 50, 0.15);
    color: #CD7F32;
    border-color: rgba(205, 127, 50, 0.3);
}

.award-badge i {
    font-size: 12px;
}

.award-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6B0F1A;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 6px 16px;
    border-radius: 8px;
    background: rgba(107, 15, 26, 0.05);
    border: 1px solid transparent;
}

.award-link:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.award-link i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.award-link:hover i {
    transform: translateX(4px);
}

/* News Card */
.news-card {
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(107, 15, 26, 0.15);
    border-color: #C5A059;
    background: rgba(255, 255, 255, 0.92);
}

.news-card .news-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

/* News Section Background */
.news-section {
    position: relative;
    background: linear-gradient(135deg, #F5F0EB 0%, #EDE8E2 50%, #E5DDD5 100%);
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../bg4.jpg');
    background-size: 580px 580px;
    opacity: 0.1;
}

.news-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(197, 160, 89, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(197, 160, 89, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.news-content {
    position: relative;
    z-index: 1;
}

.news-content .section-title {
    color: #4A0A12;
}

.news-content .section-subtitle {
    color: #C5A059;
}

.news-content .section-desc {
    color: rgba(74, 10, 18, 0.6);
}

/* Agenda Section Background */
.agenda-section {
    position: relative;
    background: linear-gradient(135deg, #2A060A 0%, #4A0A12 50%, #6B0F1A 100%);
    overflow: hidden;
}

.agenda-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../bg4.jpg');
    background-size: 580px 580px;
    opacity: 0.1;
}

.agenda-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(197, 160, 89, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(197, 160, 89, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.agenda-content {
    position: relative;
    z-index: 1;
}

.agenda-content .section-title {
    color: #FDFDFD;
}

.agenda-content .section-subtitle {
    color: #C5A059;
}

.agenda-content .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* Agenda Item */
.agenda-item {
    display: flex;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.agenda-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.agenda-date {
    min-width: 70px;
    text-align: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.agenda-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C5A059;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.agenda-date .month {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    font-weight: 600;
}

.agenda-date .year {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.agenda-info h4 {
    color: #FDFDFD;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.agenda-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 300;
}

.agenda-info .agenda-time {
    color: #C5A059;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 10, 18, 0.88) 0%, rgba(107, 15, 26, 0.60) 50%, rgba(74, 10, 18, 0.25) 100%);
    z-index: 1;
    border-radius: 2.25rem;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Slider Controls - Rounded */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: rgba(197, 160, 89, 0.5);
    border-color: #C5A059;
    transform: translateY(-50%) scale(1.08);
}

.slider-btn.prev {
    left: 24px;
}

.slider-btn.next {
    right: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dot.active {
    background: #C5A059;
    transform: scale(1.2);
    border-color: #C5A059;
    box-shadow: 0 0 24px rgba(197, 160, 89, 0.4);
}

.slider-dot:hover {
    background: rgba(197, 160, 89, 0.7);
}

/* Partner Logo Effect */
.partner-logo {
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: default;
}

.partner-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05) translateY(-4px);
}

/* Animated Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #C5A059, #F3E0B0, #C5A059);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Custom Underline - Light version for dark bg */
.gold-underline-light {
    position: relative;
}

.gold-underline-light::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    border-radius: 4px;
}

/* Custom Underline - Dark version for light bg */
.gold-underline-dark {
    position: relative;
}

.gold-underline-dark::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    border-radius: 4px;
}

/* Floating Animation for Icons */
.floating-icon {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Stats Counter Styling */
.stat-number {
    font-variant-numeric: tabular-nums;
}

/* Mobile menu smooth */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Button styles - Rounded */
.btn-gold {
    background: #C5A059;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-gold:hover {
    background: #A68545;
    box-shadow: 0 8px 28px rgba(197, 160, 89, 0.35);
}

.btn-outline-gold {
    border: 1px solid #C5A059;
    color: #C5A059;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-outline-gold:hover {
    background: #C5A059;
    color: white;
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #C5A059;
    color: #C5A059;
}

/* Rounded hero container */
.hero-rounded {
    border-radius: 2.25rem;
    overflow: hidden;
}

/* Rounded stats container */
.stats-rounded {
    border-radius: 1.5rem;
    overflow: hidden;
}

/* Section divider */
.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    border-radius: 4px;
    margin: 0 auto;
}

/* Responsive */
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .awards-section {
        padding: 60px 0;
    }

    .award-item {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .award-item-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .award-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .award-title {
        font-size: 15px;
    }

    .award-meta {
        gap: 10px;
    }

    .award-meta span {
        font-size: 12px;
    }

    .award-link {
        align-self: flex-start;
        font-size: 12px;
        padding: 4px 12px;
    }

    .section-title-premium {
        font-size: 2rem;
    }

    .award-item:hover {
        transform: translateX(4px);
    }
}

@media (max-width: 480px) {
    .award-item {
        padding: 16px;
    }

    .award-title {
        font-size: 14px;
    }

    .award-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .award-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .pagination-wrapper .pagination li a,
    .pagination-wrapper .pagination li span {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        padding: 0 8px;
    }
}

.pengajuan-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../bg4.jpg');
    background-size: 580px 580px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

/* Background Pattern */
.pengaduan-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../bg4.jpg');
    background-size: 580px 580px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

/* Background Pattern */
.awards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../bg4.jpg');
    background-size: 580px 580px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}