/* =========================================================================
   STYLE.CSS - Dinas Kebudayaan Kabupaten Buton
   Author: Dinas Kebudayaan
   Last Updated: 2026-04-26
   -------------------------------------------------------------------------
   TABLE OF CONTENTS:
   1.  ROOT VARIABLES & RESET
   2.  GLOBAL STYLES (Typography, Links, Body)
   3.  HEADER & NAVIGATION (Topbar, Navbar, Offcanvas)
   4.  FOOTER SECTION
   5.  CORE COMPONENTS (Buttons, Cards, Badges, Breadcrumbs)
   6.  LAYOUT UTILITIES (Spacing, Grid, Bento, Masonry)
   7.  HERO SLIDER & BANNERS
   8.  HOME PAGE SECTIONS (Sambutan, Stats, Programs)
   9.  NEWS & PUBLICATION PAGES
   10. CULTURAL HERITAGE & SITES PAGES
   11. EMPLOYEE & ORGANIZATIONAL PAGES
   12. DOWNLOADS & DOCUMENT HUB
   13. EVENTS & CALENDAR
   14. CONTACT & MAPS
   15. UTILITIES & ANIMATIONS
   16. COMPREHENSIVE MOBILE OPTIMIZATIONS
   ========================================================================= */

/* 1. ROOT VARIABLES & RESET */
:root {
    --primary-navy: #0B1F3A;
    --dark-navy: #061121;
    --primary-gold: #C9A227;
    --light-gold: #E4C563;
    --white: #FFFFFF;
    --light-bg: #f4f7f9;
    --text-dark: #2C3E50;
    --text-muted: #6c757d;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    padding-top: 130px;
    /* Offset for fixed header */
}

@media (max-width: 1199px) {
    body {
        padding-top: 130px;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 85px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 85px;
    }
}

@media (min-width: 1200px) {
    .col-xl-5-cols {
        flex: 0 0 auto;
        width: 20%;
    }
}

a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-gold);
}

/* 3. HEADER & NAVIGATION */

.site-header {
    background-color: var(--primary-navy);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* GPU Acceleration to prevent scroll jitter */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, background-color;
}

.site-header.scrolled {
    background-color: rgba(11, 31, 58, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.site-header.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    max-height: 50px;
    opacity: 1;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-gold);
}

.top-bar .language-switcher select {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: border 0.3s;
}

.top-bar .language-switcher select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.top-bar .language-switcher select option {
    color: var(--text-dark);
}

.top-bar-search {
    position: relative;
}

/* 6. LAYOUT UTILITIES & SPACING */

.section-sp {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.section-sp-sm {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.section-sp-lg {
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
}

@media (max-width: 1199.98px) {
    .section-sp {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .section-sp-sm {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-sp-lg {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media (max-width: 991.98px) {
    .section-sp {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-sp-sm {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section-sp-lg {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* Add padding to containers on mobile to prevent text from touching screen edges */
@media (max-width: 767.98px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.top-bar-btn-login {
    background: rgba(201, 162, 39, 0.15);
    color: var(--white) !important;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-btn-login:hover {
    background: var(--primary-gold);
    color: var(--primary-navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.2);
}

.top-bar-btn-login i {
    font-size: 0.75rem;
}

/* Polished Top Bar Search */
.top-bar-search {
    position: relative;
    display: flex;
    align-items: center;
}

.top-bar-search input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 30px;
    padding: 0.25rem 1rem 0.25rem 2.2rem;
    font-size: 0.8rem;
    width: 220px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
}

.top-bar-search input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
    width: 280px;
}

.top-bar-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0.8;
    z-index: 5;
}

.top-bar-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Keep previous button styles if needed, or remove if strictly reverting */
.hover-text-gold:hover {
    color: var(--primary-gold) !important;
}

.hover-text-gold:hover i {
    color: var(--white) !important;
}

/* Mobile Premium Search */
.search-box-premium-v2 {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 6px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.search-box-premium-v2:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.1);
}

.search-box-premium-v2 input {
    background: transparent !important;
    border: none !important;
    color: white !important;
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    flex: 1;
}

.search-box-premium-v2 input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.search-box-premium-v2 .search-icon {
    margin-left: 12px;
    color: var(--primary-gold);
    opacity: 0.7;
}

.search-btn-v2 {
    background: var(--primary-gold);
    border: none;
    color: var(--primary-navy);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.search-btn-v2:hover {
    background: var(--white);
    transform: translateY(-1px);
}

/* Navbar Layout */
.navbar {
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

@media (max-width: 991px) {
    .navbar {
        transition: none !important;
    }
}

.site-header.scrolled .navbar {
    padding: 0.5rem 0;
}

.brand-icon {
    width: auto;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav Links & Hover Effects */
.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    position: relative;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Hide default bootstrap arrows to prevent double arrows and glitches */
.dropdown-toggle::after {
    display: none !important;
}

@media (min-width: 1200px) {

    .nav-link:hover,
    .nav-item.active .nav-link {
        opacity: 1;
        color: var(--primary-gold) !important;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(4px);
    }

    .nav-item.active .nav-link {
        background: rgba(201, 162, 39, 0.15);
    }
}

/* Dropdown Menus Desktop Animations */
@media (min-width: 1200px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px) scale(0.98);
        transform-origin: top center;
        transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        pointer-events: none;

        background-color: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 14px;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
        padding: 0.6rem;
        min-width: 250px;
        margin-top: 0;
        top: 100%;
    }

    /* Bridge the gap so hover state isn't lost */
    .nav-item.dropdown {
        position: relative;
    }

    .nav-item.dropdown::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 100%;
        height: 15px;
    }

    .nav-item.dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--primary-navy);
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.2s ease;
        position: relative;
        margin-bottom: 2px;
    }

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

    .dropdown-item:hover,
    .dropdown-item:focus,
    .dropdown-item.active {
        background-color: rgba(201, 162, 39, 0.08);
        color: var(--primary-gold) !important;
        transform: translateX(4px);
    }

    /* 3-Level Submenu Desktop */
    .dropdown-menu li {
        position: relative;
    }

    .dropdown-submenu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s ease;
        pointer-events: none;

        position: absolute;
        left: 100%;
        top: -10px;
        margin-top: 0;
    }

    .dropdown-menu>li:hover>.dropdown-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }
}

/* Mobile Offcanvas Customization */
@media (max-width: 1199px) {
    .offcanvas-body {
        background: var(--primary-navy);
        padding-bottom: 5rem !important;
    }

    /* Fix for offcanvas height issue when header is scrolled */
    .offcanvas.offcanvas-end {
        height: 100vh !important;
        top: 0 !important;
        bottom: 0 !important;
        position: fixed !important;
    }

    .nav-link {
        margin: 0;
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-item.active>.nav-link {
        color: var(--primary-gold) !important;
        background: rgba(201, 162, 39, 0.05);
        border-left: 4px solid var(--primary-gold);
    }

    .dropdown-item.active,
    .dropdown-item[data-active="true"] {
        color: var(--primary-gold) !important;
        background: rgba(201, 162, 39, 0.1) !important;
        border-left: 3px solid var(--primary-gold);
        font-weight: 700;
    }

    .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.15);
        border: none;
        padding: 0;
        margin: 0;
        border-radius: 0;
        position: static !important;
        float: none !important;
        box-shadow: none !important;
        width: 100% !important;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        padding: 0.6rem 1rem 0.6rem 2.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .dropdown-item:hover {
        background-color: transparent;
        color: var(--primary-gold);
    }

    /* 3-Level Submenu Mobile */
    .dropdown-submenu {
        background-color: rgba(0, 0, 0, 0.2);
        display: none;
    }

    .dropdown-submenu.show {
        display: block !important;
    }

    .dropdown-submenu .dropdown-item {
        padding-left: 3.5rem;
        font-size: 0.85rem;
    }
}

.navbar-toggler {
    transition: transform 0.3s;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* 5. CORE COMPONENTS */

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.85)), url('https://picsum.photos/seed/disbud-banner/1920/600') center/cover fixed;
    padding: 8rem 0 4rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

.page-banner h1 {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb */
.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-item.active {
    color: var(--primary-gold);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-navy);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

.btn-outline-primary {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-outline-primary:hover {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    height: 100%;
    overflow: hidden;
    background: var(--white);
}

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

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-body {
    padding: 1.8rem;
}

.card-title {
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-meta i {
    color: var(--primary-gold);
    margin-right: 6px;
}

/* Section Title */
.section-title {
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-gold);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Sidebar Widget */
.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-bg);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-gold);
}

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

.sidebar-list li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.sidebar-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-list a {
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.sidebar-list a:hover {
    color: var(--primary-gold);
    padding-left: 8px;
}

/* Filters */
.filters {
    border-left: 4px solid var(--primary-gold);
    background: var(--white);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    gap: 1.5rem;
}

.pagination-wrapper nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.pagination-wrapper .pagination {
    margin-bottom: 0 !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pagination-wrapper .small.text-muted {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pagination-wrapper .small.text-muted b,
.pagination-wrapper .small.text-muted span {
    color: var(--primary-navy) !important;
    font-weight: 700;
}

.pagination .page-link {
    color: var(--primary-navy);
    border: none;
    margin: 0;
    border-radius: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    font-size: 0.95rem;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
    transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0.4;
    box-shadow: none;
}

.pagination .page-link:hover:not(.disabled) {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.2);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    width: auto;
    padding: 0 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 767.98px) {
    .pagination .page-link {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        padding: 0 1rem;
    }

    .pagination-wrapper .small.text-muted {
        font-size: 0.8rem !important;
    }
}

/* 7. HERO SLIDER & BANNERS */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(rgba(11, 31, 58, 0.7), rgba(11, 31, 58, 0.9)), url('https://picsum.photos/seed/disbud-banner/1920/600') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Stats */
.stat-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

/* 4. FOOTER SECTION */
.footer {
    background-color: var(--dark-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0;
    margin-top: 5rem;
    border-top: 5px solid var(--primary-gold);
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

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

.footer-links a:hover {
    padding-left: 8px;
}

.social-media a:hover {
    background-color: var(--primary-gold) !important;
    color: var(--primary-navy) !important;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #030811;
    padding: 1.5rem 0;
    margin-top: 4rem;
    font-size: 0.9rem;
}


/* 8. HOME PAGE SECTIONS (Sambutan, Stats, Programs) */
.vh-100 {
    min-height: 100vh;
    min-height: 100dvh;
    /* Dynamic viewport height for mobile */
}

.fw-black {
    font-weight: 900;
}

.tracking-wider {
    letter-spacing: 2px;
}

.text-shadow {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.group-hover-scale {
    transition: transform 0.6s ease;
}

.group:hover .group-hover-scale {
    transform: scale(1.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-overlay-card {
    position: relative;
    overflow: hidden;
    display: block;
}

.image-overlay-card img {
    transition: transform 0.6s ease;
}

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

.image-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 31, 58, 0.9));
    padding: 3rem 1.5rem 1.5rem;
    color: white;
    transition: padding 0.3s ease;
}

.image-overlay-card:hover .image-overlay-content {
    padding-bottom: 2rem;
}

.masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .masonry {
        column-count: 1;
    }
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
    width: auto;
    height: 50px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.opacity-0 {
    opacity: 0;
}

.group:hover .group-hover-opacity-100 {
    opacity: 1;
}

.transition-opacity {
    transition: opacity 0.3s ease;
}



.home-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.home-page .site-header.scrolled {
    background-color: rgba(11, 31, 58, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Premium Card Upgrades */
.card-premium {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 162, 39, 0.3);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.card-img-wrapper img {
    transition: transform 0.8s ease;
}

.card-premium:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.badge-glow {
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

/* Gallery Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.artistic-gallery-item {
    transition: all 0.5s ease-in-out;
    opacity: 1;
    transform: scale(1);
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

.artistic-gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    display: none !important;
}

.artistic-gallery-item.show {
    display: block !important;
    animation: artisticGalleryFadeIn 0.5s ease-in-out forwards;
}

.artistic-gallery-item img {
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 0 auto;
    transition: transform 0.6s;
}

@keyframes artisticGalleryFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item.tall {
    grid-column: span 1;
    grid-row: span 2;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* Helpers */
.text-navy {
    color: var(--primary-navy) !important;
}

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

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

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

/* Program Cards Enhancement */
.program-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

.program-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--primary-navy);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.program-card img {
    width: 100%;
    height: auto;
    transition: all 0.8s ease;
    opacity: 0.85;
}

.program-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.5) 40%, transparent 80%);
    color: white;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.program-card-content {
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.program-card-desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(11, 31, 58, 0.3);
}

.program-card:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.program-card:hover .program-card-content {
    transform: translateY(0);
}

.program-card:hover .program-card-desc {
    opacity: 1;
    max-height: 150px;
}

.program-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.95);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 1.3rem;
    backdrop-filter: blur(8px);
    z-index: 3;
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.4);
    transition: all 0.3s ease;
}

.program-card:hover .program-icon-badge {
    background: var(--white);
    color: var(--primary-navy);
    transform: rotate(10deg);
}

.program-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    border: none;
}

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

/* Balanced News Section */
.news-card-v2 {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.1);
    border-color: var(--primary-gold);
}

.news-card-v2-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-card-v2-img img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

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

.news-card-v2-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-card-v2-body {
    padding: 1.5rem;
}

.news-card-v2-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.news-card-v2 h4 {
    font-size: 1.15rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card-v2:hover h4 {
    color: var(--primary-gold);
}

/* 10 Objects Interactive Section - Creative Mosaic Edition */
.cultural-object-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--dark-navy);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1200px) {
    .col-xl-5-cols {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* 10 Objects Interactive Section - Ultra Compact & Bright Edition */
.cultural-object-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0a192f;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cultural-object-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    opacity: 0.7;
    /* Slightly darker */
    filter: brightness(0.75);
    /* Added brightness reduction */
    transition: all 0.6s ease;
}

.cultural-object-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.cultural-object-card:hover img {
    opacity: 0.6;
    transform: scale(1.1);
}

.cultural-object-overlay {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Minimalist Protection Gradient - Only at the very bottom */
    background: linear-gradient(to top,
            rgba(3, 8, 17, 0.9) 0%,
            rgba(3, 8, 17, 0.4) 30%,
            transparent 60%);
}

.cultural-object-number-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    background: rgba(3, 8, 17, 0.6);
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
}

.cultural-object-card:hover .cultural-object-number-badge {
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-color: var(--primary-gold);
}

.cultural-object-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #ffffff;
    /* Default: White Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.cultural-object-card:hover .cultural-object-icon {
    color: var(--primary-gold);
    /* Hover: Gold Icon */
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(201, 162, 39, 0.6);
}

.cultural-object-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-weight: 400;
}

.cultural-object-card:hover .cultural-object-desc {
    max-height: 80px;
    opacity: 1;
    margin-top: 0.5rem;
}

.cultural-object-card h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    /* Default: White Title */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.cultural-object-card:hover h4 {
    color: var(--primary-gold);
    /* Hover: Gold Title */
}

/* 8. Professional Video Showcase - "The Premiere" */
.premiere-video-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    min-height: 500px;
}

@media (max-width: 1200px) {
    .premiere-video-container {
        grid-template-columns: 1fr;
    }
}

/* Featured Video Card */
.video-featured {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    height: 100%;
    min-height: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-featured img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    transition: transform 1.2s ease;
}

.video-featured:hover img {
    transform: scale(1.05);
    opacity: 0.6;
}

.video-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 8, 17, 0.9) 0%, transparent 60%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.video-featured-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-featured:hover .video-featured-play {
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-color: var(--primary-gold);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.6);
}

/* 8. Modern Bento Video Wall */
.bento-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .bento-video-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

.bento-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #030811;
    cursor: pointer;
}

/* Bento Placements */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

@media (max-width: 992px) {

    .bento-large,
    .bento-wide {
        grid-column: span 2;
        height: 350px;
    }
}

.bento-video-card img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-video-card:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

.bento-video-overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(3, 8, 17, 0.9) 0%, transparent 60%);
    z-index: 2;
}

.bento-large .bento-video-overlay {
    padding: 2.5rem;
}

.bento-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bento-video-card h5 {
    color: #fff;
    font-weight: 800;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.bento-large h5 {
    font-size: 1.8rem;
}

.bento-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.bento-large .bento-play-btn {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
}

.bento-video-card:hover .bento-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
}

/* 9. Event Calendar - "The Royal Event" */
.event-card-royal {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-royal:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(3, 8, 17, 0.15);
    border-color: var(--primary-gold);
}

.event-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 1s ease;
}

.event-card-royal:hover .event-img-wrapper img {
    transform: scale(1.1);
}

.event-date-orb {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: var(--primary-navy);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 2px solid var(--primary-gold);
}

.event-date-orb .day {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.event-date-orb .month {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-status-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 6px 15px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: 1px;
}

.event-content-royal {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-location-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    background: #f8f9fa;
    color: var(--primary-navy);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    align-self: center;
}

.event-location-tag i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.event-content-royal h4 {
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.event-card-royal:hover .event-content-royal h4 {
    color: var(--primary-gold);
}

.event-content-royal p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

/* 10. Artistic Gallery - "The Cinematic Archive" */
.gallery-filter-container {
    background: rgba(3, 8, 17, 0.03);
    padding: 8px;
    border-radius: 100px;
    display: flex;
    gap: 5px;
    width: fit-content;
    /* Ensure it only takes needed space */
    margin: 0 auto;
    /* Center it */
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.gallery-filter-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

@media (max-width: 991px) {
    .gallery-filter-container {
        padding: 6px;
        border-radius: 50px;
        background: rgba(3, 8, 17, 0.05);
        display: flex;
        justify-content: center;
        width: fit-content;
        margin: 0 auto;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .gallery-filter-btn span {
        display: none;
    }

    .gallery-filter-btn {
        padding: 0 !important;
        /* Force zero padding for symmetry */
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        gap: 0 !important;
    }

    .gallery-filter-btn i {
        font-size: 1.25rem !important;
        margin: 0 !important;
        display: block !important;
        line-height: 1 !important;
    }

    .gallery-filter-container {
        gap: 12px;
        padding: 8px 15px;
    }
}

.gallery-filter-btn {
    border: none;
    color: var(--primary-navy);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    /* Prevent icons/text from shrinking */
}

.gallery-filter-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.gallery-filter-btn:hover {
    background: rgba(3, 8, 17, 0.05);
    transform: translateY(-2px);
}

.gallery-filter-btn:hover i {
    transform: rotate(15deg) scale(1.2);
}

.gallery-filter-btn.active {
    background: var(--primary-navy);
    color: var(--primary-gold) !important;
    box-shadow: 0 10px 20px rgba(3, 8, 17, 0.2);
}

.gallery-filter-btn.active i {
    color: var(--primary-gold);
}

.artistic-gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: var(--primary-navy);
    margin-bottom: 20px;
    display: block;
}

.artistic-gallery-img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
}

.artistic-gallery-card:hover .artistic-gallery-img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.artistic-gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(3, 8, 17, 0.8) 0%, transparent 60%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.artistic-gallery-card:hover .artistic-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    z-index: 2;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.artistic-gallery-card:hover .gallery-category-tag {
    transform: translateX(0);
    opacity: 1;
}

.gallery-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.gallery-view-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.artistic-gallery-card:hover .gallery-view-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* About Page Components */

/* 1. About Hero */
.about-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 8, 17, 0.9) 0%, rgba(3, 8, 17, 0.4) 100%);
    z-index: 1;
}

/* 2. Vision & Mission Cards */
.vision-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(3, 8, 17, 0.05);
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(3, 8, 17, 0.1);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(198, 166, 100, 0.1);
    color: #c6a664;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* 3. Organizational Chart Styling */
.org-container {
    padding: 2rem 0;
}

.org-node {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(3, 8, 17, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.org-node:hover {
    border-color: #c6a664;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(3, 8, 17, 0.1);
}

.org-node .position {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #c6a664;
    margin-bottom: 5px;
    display: block;
}

.org-node .name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #030811;
}

/* 4. Timeline Styling */
.history-timeline {
    position: relative;
    padding-left: 50px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(3, 8, 17, 0.1);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -44px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #c6a664;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(198, 166, 100, 0.2);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 5. Statistics Counters */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #030811;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

/* 6. Leadership Section */
.leadership-box {
    background: #030811;
    color: white;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.leader-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding-left: 40px;
}

.leader-quote::before {
    content: 'ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    color: #c6a664;
    opacity: 0.3;
}

/* New Styles */

/* About Page Specific Components */
.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(3, 8, 17, 0.7), rgba(3, 8, 17, 0.7)), url('https://picsum.photos/seed/about-hero/1920/1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.timeline-v {
    position: relative;
    padding-left: 50px;
}

.timeline-v::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gold);
    opacity: 0.3;
}

.timeline-v-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-v-dot {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-v-item:hover .timeline-v-dot {
    background: var(--primary-gold);
    color: #fff;
}

.org-chart-container {
    padding: 40px 0;
    overflow-x: auto;
}

.org-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(3, 8, 17, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 166, 100, 0.1);
    width: 220px;
    margin: 0 auto;
}

.org-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.org-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--primary-gold);
    padding: 3px;
    object-fit: cover;
}

.org-connector {
    width: 2px;
    height: 40px;
    background: var(--primary-gold);
    margin: 0 auto;
    opacity: 0.3;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(3, 8, 17, 0.05);
}

.faq-accordion .accordion-button {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--primary-navy);
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-navy);
    color: #fff;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.counter-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(3, 8, 17, 0.05);
}

.counter-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-navy);
    display: block;
    margin-bottom: 5px;
}

.commitment-banner {
    padding: 120px 0;
    background: linear-gradient(rgba(3, 8, 17, 0.8), rgba(3, 8, 17, 0.8)), url('https://picsum.photos/seed/commitment/1920/800');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}


/* Breadcrumb Premium Style */
.breadcrumb-premium {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    list-style: none;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem !important;
}

.breadcrumb-premium .breadcrumb-item {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-premium .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-premium .breadcrumb-item a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.4);
}

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

.breadcrumb-premium .breadcrumb-item+.breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-gold);
    padding: 0 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}


/* 10. CULTURAL HERITAGE & SITES PAGES */
/* 1. Hero About Section - Royal Cultural Banner */
.about-hero {
    min-height: 80vh !important;
    padding: 200px 0 130px !important;
    background: radial-gradient(circle at center, rgba(3, 8, 17, 0.4) 0%, rgba(3, 8, 17, 0.8) 100%), url('https://picsum.photos/seed/about-hero-v2/1920/1080') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative !important;
    overflow: hidden !important;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 1;
}

.about-hero-ornament {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: url('assets/images/buton-pattern-light.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.hero-title-accent {
    width: 100px;
    height: 4px;
    background: var(--primary-gold);
    display: block;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(198, 166, 100, 0.5);
}

.hero-social-sidebar {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 3;
}

.hero-social-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-social-link:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}


/* Responsive Fixes for Royal Hero Banner */
@media (max-width: 991px) {
    .about-hero {
        padding: 120px 0 60px !important;
        /* Adjusted for better mobile spacing */
        min-height: auto !important;
        text-align: center;
        background-attachment: scroll !important;
        /* Fixed background is broken on mobile */
    }

    .about-hero .breadcrumb-premium {
        margin: 0 auto 20px;
    }

    .about-hero .hero-title-accent {
        margin: 25px auto !important;
    }

    .about-hero h1 {
        font-size: 2.8rem !important;
    }

    .about-hero p {
        font-size: 1.1rem !important;
        margin: 0 auto 30px !important;
    }

    .about-hero .d-flex {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .about-hero h1 {
        font-size: 2.2rem !important;
    }

    .about-hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .breadcrumb-premium {
        padding: 6px 15px !important;
        font-size: 0.75rem !important;
    }
}


/* Ultra-Professional Split Hero styles */
.hero-split-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 15px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.hero-split-card:hover {
    transform: perspective(1000px) rotateY(0deg);
    border-color: var(--primary-gold);
}

.hero-split-card img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    height: 350px;
}

.hero-badge-float {
    position: absolute;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    bottom: 40px;
    right: -20px;
    box-shadow: 0 10px 20px rgba(198, 166, 100, 0.3);
    z-index: 4;
}

.hero-glow-dot {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}


/* Professional Agency Intro - Showcase Styles */
.intro-collage {
    position: relative;
    padding: 30px;
}

.intro-main-img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(3, 8, 17, 0.15);
    border: 8px solid #fff;
}

.intro-sub-img {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 220px;
    border-radius: 24px;
    border: 6px solid #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.intro-experience-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: var(--primary-navy);
    padding: 25px;
    border-radius: 25px;
    color: #fff;
    z-index: 4;
    box-shadow: 0 15px 35px rgba(3, 8, 17, 0.2);
}

.intro-experience-badge strong {
    font-size: 2.5rem;
    color: var(--primary-gold);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.intro-feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intro-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-navy);
}

.intro-feature-item i {
    width: 35px;
    height: 35px;
    background: rgba(198, 166, 100, 0.1);
    color: var(--primary-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.intro-signature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-signature-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}


/* Responsive Fixes for Agency Intro Section */
@media (max-width: 991px) {
    .intro-collage {
        padding: 0 !important;
        margin-bottom: 50px;
    }

    .intro-main-img {
        border-radius: 20px !important;
        border-width: 4px !important;
    }

    .intro-experience-badge {
        padding: 15px !important;
        border-radius: 15px !important;
        top: -20px !important;
        right: -10px !important;
    }

    .intro-experience-badge strong {
        font-size: 1.8rem !important;
    }

    .intro-feature-list {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .intro-signature-box {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .ps-lg-4 {
        padding-left: 0 !important;
        text-align: center;
    }

    .ps-lg-4 .d-flex {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .intro-main-img {
        height: 300px;
        object-fit: cover;
    }

    .intro-experience-badge {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        margin: -30px auto 20px !important;
        width: fit-content;
    }
}


/* Refined Balancing for Agency Intro */
.intro-content-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.intro-footer-balanced {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-footer-balanced .quote-box {
    flex: 1;
}

.intro-footer-balanced .signature-box {
    flex: 0 0 200px;
}

@media (max-width: 1199px) {
    .intro-footer-balanced {
        flex-direction: column;
        gap: 40px;
    }

    .intro-footer-balanced .signature-box {
        flex: 0 0 auto;
        width: 100%;
    }
}


/* Ultra-Precise Body Layout & Container */
.container-precise {
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container-precise {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1400px) {
    .container-precise {
        max-width: 1360px;
    }
}

/* Section Refinement */
.section-body-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.row-precise {
    margin-left: -20px;
    margin-right: -20px;
}

.row-precise>[class*='col-'] {
    padding-left: 20px;
    padding-right: 20px;
}


/* Neat Mobile Layout for Agency Intro */
@media (max-width: 991px) {
    #profil-singkat {
        text-align: center;
    }

    .intro-collage {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .intro-main-img {
        max-height: 400px;
        object-fit: cover;
        width: 100% !important;
    }

    .intro-sub-img {
        display: none !important;
    }

    /* Hide sub-image on mobile for cleaner look */
    .intro-experience-badge {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        margin-top: -30px;
        margin-bottom: 20px;
        width: fit-content;
        padding: 15px 25px !important;
        border-radius: 15px !important;
    }

    .ps-lg-5 {
        padding-left: 0 !important;
    }

    .intro-feature-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px !important;
    }

    .intro-feature-item {
        background: #f8f9fa;
        padding: 10px 15px;
        border-radius: 10px;
        width: calc(50% - 10px);
        justify-content: center;
    }

    .stat-mini {
        text-align: center;
        padding: 15px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .intro-content-wrap .d-flex {
        justify-content: center;
    }
}


/* Professional Vision & Mission - North Star Layout */
.vision-card {
    background: var(--primary-navy);
    color: #fff;
    padding: 60px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(3, 8, 17, 0.3);
}

.vision-card::before {
    content: 'VISION';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.03;
    color: #fff;
    pointer-events: none;
}

.vision-card .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(198, 166, 100, 0.2);
    color: var(--primary-gold);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.mission-card {
    background: #fff;
    color: var(--primary-navy);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: 'MISSION';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.03;
    color: var(--primary-navy);
    pointer-events: none;
}

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

.mission-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mission-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mission-num {
    flex: 0 0 35px;
    height: 35px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}


/* Professional Legal Foundation - Regulatory Roadmap */
.legal-card {
    background: #fff;
    padding: 25px;
    border-radius: 24px;
    border-left: 5px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.legal-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(198, 166, 100, 0.1);
    border-left-color: var(--primary-navy);
}

.legal-icon {
    flex: 0 0 50px;
    height: 50px;
    background: rgba(198, 166, 100, 0.1);
    color: var(--primary-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.legal-tag {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 100px;
}


/* Professional Legal Foundation - Document Cards */
.legal-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.legal-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(198, 166, 100, 0.1);
}

.legal-card .doc-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-navy);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.legal-card:hover .doc-icon {
    background: var(--primary-gold);
    color: var(--white);
}

.legal-card .doc-info {
    flex-grow: 1;
}

.legal-card .doc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.legal-card .doc-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.legal-card .btn-download-mini {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--light-bg);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
}

.legal-card .btn-download-mini:hover {
    background: var(--primary-navy);
    color: #fff;
    transform: scale(1.1);
}


/* Professional Organizational Chart - Hierarchy Styles */
.org-hierarchy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.org-node {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(3, 8, 17, 0.05);
    text-align: center;
    position: relative;
    min-width: 250px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.org-node:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(198, 166, 100, 0.15);
}

.org-node .node-title {
    font-size: 0.7rem;
    color: var(--primary-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.org-node .node-name {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.org-fields-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    position: relative;
    padding-top: 50px;
}

.org-fields-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: rgba(3, 8, 17, 0.1);
}

.org-fields-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background: rgba(3, 8, 17, 0.1);
}

.org-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.org-sub-node {
    background: #fff;
    border: 1px dashed rgba(3, 8, 17, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--primary-navy);
    font-weight: 700;
    max-width: 240px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.org-sub-node::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    width: 2px;
    height: 15px;
    background: rgba(3, 8, 17, 0.1);
}

.org-secretary-node {
    position: absolute;
    top: 80px;
    left: calc(50% + 150px);
    min-width: 200px;
    padding: 15px 20px;
    border-style: solid;
    border-width: 1px 1px 1px 4px;
    border-color: rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.05) var(--primary-gold);
}

.org-secretary-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 2px;
    background: rgba(3, 8, 17, 0.1);
}

.org-secretary-node::after {
    content: '';
    position: absolute;
    top: -45px;
    left: -30px;
    width: 2px;
    height: 47px;
    background: rgba(3, 8, 17, 0.1);
}

@media (max-width: 991px) {
    .org-fields-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
    }

    .org-fields-container::after {
        display: none;
    }

    .org-secretary-node {
        position: relative;
        top: 0;
        left: 0;
        margin: 20px 0;
    }

    .org-secretary-node::before,
    .org-secretary-node::after {
        display: none;
    }
}


/* Professional Org Chart Image Showcase */
.org-image-frame {
    background: #fff;
    padding: 40px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 80px rgba(3, 8, 17, 0.05);
    position: relative;
    overflow: hidden;
}

.org-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-navy), var(--primary-gold));
}

.org-image-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: #f8f9fa;
    position: relative;
}

.org-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.org-image-container:hover img {
    transform: scale(1.02);
}

.org-overlay-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.btn-org-control {
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-org-control:hover {
    background: var(--primary-gold);
    transform: translateY(-5px);
}


/* Professional Graphic-Style Org Chart */
.org-graphic-container {
    background: #fff;
    position: relative;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.org-hierarchy-graphic {
    min-width: 1000px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-box {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    border: 2px solid transparent;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gold-theme {
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-color: var(--primary-gold);
}

.navy-theme {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--primary-navy);
}

.gold-outline {
    background: #fff;
    color: var(--primary-navy);
    border-color: var(--primary-gold);
}

.sub-theme {
    background: #f8f9fa;
    color: var(--text-muted);
    font-size: 0.75rem;
    border: 1px dashed #ccc;
    box-shadow: none;
}

.connector-v {
    width: 2px;
    height: 30px;
    background: #ddd;
    margin: 0 auto;
}

.connector-v.dashed {
    border-left: 2px dashed #ddd;
    background: transparent;
}

.connector-h-full {
    height: 2px;
    background: #ddd;
    width: 66%;
    margin: 0 auto;
}

.connector-h-half {
    height: 2px;
    background: #ddd;
    width: 50%;
    margin: 0 auto;
}

.graphic-row-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.graphic-cols {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0;
}

.graphic-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}

.sub-split {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.graphic-sub-cols {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.graphic-sub-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Responsive Hybrid Org Chart */
.org-graphic-container {
    overflow-x: auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

@media (max-width: 991px) {
    .org-hierarchy-graphic {
        min-width: auto;
        padding: 20px;
        width: 100%;
    }

    .graphic-cols {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
        margin-top: 30px;
    }

    .graphic-col {
        padding: 0;
        width: 100%;
    }

    .connector-h-full,
    .connector-h-half {
        display: none;
    }

    .graphic-row-main {
        position: relative;
    }

    .graphic-row-main::before {
        content: '';
        position: absolute;
        top: -30px;
        left: 50%;
        width: 2px;
        height: 30px;
        background: #ddd;
    }

    .node-box {
        min-width: auto;
        width: 100%;
    }

    .graphic-sub-cols {
        flex-direction: column;
        gap: 20px;
    }

    .sub-split {
        margin-top: 20px;
    }
}

/* Premium Visual Touches */
.node-box {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none !important;
}

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

.node-box:hover::after {
    left: 100%;
}

.node-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


/* Professional Organizational Layout - Showcase Style */
.org-showcase-wrap {
    position: relative;
    padding: 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.org-showcase-bg-ornament {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.org-sidebar-info {
    padding-right: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.org-principle-item i {
    width: 32px;
    height: 32px;
    background: rgba(11, 31, 58, 0.05);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .org-showcase-wrap {
        padding: 20px;
    }

    .org-sidebar-info {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .org-principle-item {
        justify-content: center;
        text-align: left;
    }

    .org-sidebar-info .d-flex {
        justify-content: center;
    }
}


/* Harmonious Org Chart Layout */
.org-side-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.org-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.org-pillar-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--primary-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.org-pillar-text h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2px;
}

.org-pillar-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .org-side-info {
        margin-bottom: 50px;
        text-align: center;
    }

    .org-pillar-item {
        flex-direction: column;
        align-items: center;
    }

    .org-pillar-text {
        text-align: center;
    }
}


/* Royal Diagram Vault - Organizational Structure */
.org-vault-container {
    position: relative;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-navy) 100%);
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(3, 8, 17, 0.2);
}

.org-vault-inner {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.org-vault-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/pattern-subtle.png');
    opacity: 0.02;
    pointer-events: none;
}

.org-action-sidebar {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}

.org-action-btn {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.org-action-btn:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .org-vault-inner {
        padding: 20px;
    }

    .org-action-sidebar {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
}


/* Professional Mandate & Function Grid */
.function-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.function-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11, 31, 58, 0.08);
}

.function-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-gold);
    transition: width 0.4s ease;
}

.function-card:hover::after {
    width: 100%;
}

.function-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    color: var(--primary-navy);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.function-card:hover .icon-wrap {
    background: var(--primary-navy);
    color: var(--white);
    transform: rotate(10deg);
}

.function-card .function-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.function-card .function-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.function-list-mini {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    pt: 20px;
}

.function-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 8px;
}

.function-list-item i {
    font-size: 0.7rem;
    color: var(--primary-gold);
}


/* Royal Organizational Chart Harmonization */
.org-section-royal {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(11, 31, 58, 0.03) 0%, rgba(255, 255, 255, 1) 90%);
}

.org-section-royal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: url('assets/img/pattern-buton.png') no-repeat;
    opacity: 0.02;
    filter: grayscale(1);
    pointer-events: none;
}

.org-chart-frame-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(198, 166, 100, 0.2);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(3, 8, 17, 0.08);
    position: relative;
}

.org-chart-frame-premium::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(198, 166, 100, 0.3), transparent 40%, rgba(11, 31, 58, 0.1));
    z-index: -1;
}

.org-floating-badge {
    position: absolute;
    background: var(--primary-navy);
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(11, 31, 58, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.badge-top-left {
    top: -20px;
    left: 40px;
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.badge-bottom-right {
    bottom: 60px;
    right: 40px;
}

.org-chart-wrapper {
    padding: 40px 0;
}


/* Harmonized Professional Organizational Structure */
.org-chart-premium-wrap {
    position: relative;
    padding: 40px;
    background: rgba(11, 31, 58, 0.02);
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.org-chart-premium-wrap::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.org-chart-canvas {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(3, 8, 17, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.org-chart-canvas img {
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.org-chart-canvas:hover img {
    transform: scale(1.02);
}

.org-seal-overlay {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    opacity: 0.1;
    pointer-events: none;
}

.org-meta-bar {
    background: var(--light-bg);
    padding: 20px 30px;
    border-radius: 24px;
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .org-chart-premium-wrap {
        padding: 20px;
        border-radius: 24px;
    }

    .org-chart-canvas {
        padding: 20px;
        border-radius: 15px;
    }

    .org-meta-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


/* Ultra-Premium Organizational Structure - Museum Grade */
.org-premium-container {
    perspective: 2000px;
    padding: 60px 0;
}

.org-chart-canvas-3d {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 80px;
    border-radius: 40px;
    box-shadow: 0 50px 150px rgba(3, 8, 17, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
}

.org-chart-canvas-3d:hover {
    transform: rotateX(2deg) rotateY(-1deg);
}

.org-verification-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(11, 31, 58, 0.03);
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.org-verification-badge .dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

.org-museum-legend {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-item i {
    color: var(--primary-gold);
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}


/* Interactive Hotspots for Org Chart */
.org-interactive-container {
    position: relative;
    cursor: crosshair;
}

.org-hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 0 0 rgba(198, 166, 100, 0.4);
    animation: pulse-gold 2s infinite;
}

.org-hotspot:hover {
    transform: scale(1.3);
    background: var(--primary-navy);
    color: #fff;
    z-index: 11;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 166, 100, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(198, 166, 100, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(198, 166, 100, 0);
    }
}

.org-hotspot::after {
    content: attr(data-label);
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-navy);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.org-hotspot:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Interactive Detailed Breakdown */
.org-detail-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.org-detail-card:hover {
    border-color: var(--primary-gold);
    background: #fafafa;
}


/* Ultra-Professional Split Org Chart */
.org-split-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
}

.org-info-side {
    flex: 0 0 35%;
}

.org-chart-side {
    flex: 1;
    position: relative;
}

.org-floating-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 50px 100px rgba(3, 8, 17, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.org-floating-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-gold);
}

.org-legend-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.org-legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.org-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.org-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: radial-gradient(var(--primary-navy) 1px, transparent 1px);
    background-size: 30px 30px;
}

@media (max-width: 1199px) {
    .org-split-wrap {
        flex-direction: column;
        text-align: center;
    }

    .org-info-side {
        flex: 0 0 100%;
        width: 100%;
    }

    .org-legend-list {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

    .org-chart-side {
        width: 100%;
    }
}


/* Ultra-Premium Organizational Structure - Museum Plaque Layout */
.org-plaque-section {
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.org-plaque-wrap {
    position: relative;
    z-index: 2;
    padding: 60px;
    background: var(--primary-navy);
    border-radius: 50px;
    box-shadow: 0 50px 100px rgba(3, 8, 17, 0.2);
    overflow: hidden;
}

.org-plaque-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/black-paper.png');
    opacity: 0.1;
}

.org-plaque-header {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.org-plaque-header .title-badge {
    background: rgba(198, 166, 100, 0.1);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(198, 166, 100, 0.2);
    margin-bottom: 20px;
    display: inline-block;
}

.org-plaque-canvas {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 10px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.org-plaque-canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(198, 166, 100, 0.3);
    border-radius: 24px;
    pointer-events: none;
    margin: 10px;
}

.org-plaque-footer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.org-plaque-footer .info-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 25px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .org-plaque-wrap {
        padding: 30px;
        border-radius: 30px;
    }

    .org-plaque-canvas {
        padding: 15px;
        border-radius: 15px;
        border-width: 5px;
    }

    .org-plaque-footer {
        flex-direction: column;
        text-align: center;
    }
}


/* Ultra-Professional Museum Showcase for Org Chart */
.org-showcase-section {
    position: relative;
    background: #fff;
    background-image: radial-gradient(rgba(11, 31, 58, 0.02) 2px, transparent 0);
    background-size: 40px 40px;
}

.org-bg-text {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(11, 31, 58, 0.02);
    letter-spacing: 50px;
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.org-museum-frame {
    position: relative;
    z-index: 5;
    background: #fff;
    padding: 15px;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(3, 8, 17, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.org-museum-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary-gold);
    border-radius: 40px;
    opacity: 0.1;
    pointer-events: none;
    margin: 10px;
}

.org-museum-canvas {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.org-museum-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 166, 100, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.org-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 166, 100, 0.1);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .org-bg-text {
        font-size: 8rem;
        top: 50px;
        letter-spacing: 20px;
    }

    .org-museum-frame {
        padding: 8px;
        border-radius: 24px;
    }

    .org-museum-frame::after {
        border-radius: 24px;
        margin: 5px;
    }

    .org-museum-canvas {
        padding: 20px;
        border-radius: 15px;
    }
}


/* Royal Gallery - Ultra Professional Org Chart */
.org-section-royal {
    position: relative;
    background: #fff;
    z-index: 1;
}

.org-section-royal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.03;
    pointer-events: none;
}

.org-museum-frame {
    position: relative;
    padding: 15px;
    background: #fff;
    border: 1px solid rgba(198, 166, 100, 0.3);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(11, 31, 58, 0.1);
}

.org-museum-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 10px solid transparent;
    border-image: linear-gradient(to bottom right, var(--primary-gold), transparent, var(--primary-gold)) 1;
    opacity: 0.05;
    pointer-events: none;
    border-radius: 30px;
}

.org-canvas-inner {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.org-canvas-inner img {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.org-museum-frame:hover .org-canvas-inner img {
    transform: scale(1.03);
    filter: brightness(1.02);
}

.org-floating-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(198, 166, 100, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.org-glass-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 31, 58, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 10px 10px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.4s ease;
    visibility: hidden;
    z-index: 10;
}

.org-museum-frame:hover .org-glass-controls {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

@media (max-width: 991px) {
    .org-canvas-inner {
        padding: 30px;
    }

    .org-glass-controls {
        opacity: 1;
        visibility: visible;
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: space-between;
    }
}


/* Creative 3D Organizational Blueprint */
.org-blueprint-wrap {
    position: relative;
    padding: 60px 0;
}

.org-floating-canvas {
    position: relative;
    border-radius: 40px;
    background: #fff;
    padding: 40px;
    box-shadow: 0 50px 100px rgba(3, 8, 17, 0.1);
    border: 1px solid rgba(198, 166, 100, 0.15);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: perspective(1000px) rotateY(-5deg);
}

.org-floating-canvas:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.org-blueprint-ornament {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    opacity: 0.2;
    z-index: -1;
}

.org-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.org-summary-card {
    background: rgba(11, 31, 58, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.org-summary-card:hover {
    background: #fff;
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(198, 166, 100, 0.1);
}

.org-summary-card i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: block;
}

.org-summary-card h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.org-summary-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .org-floating-canvas {
        transform: none !important;
        padding: 20px;
    }

    .org-summary-grid {
        grid-template-columns: 1fr;
    }
}


/* Creative & Prestigious Organizational Structure (Archive Style) */
.org-archive-container {
    background: #fff;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(11, 31, 58, 0.05);
}

.org-archive-container::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.05) 0%, transparent 70%);
}

.org-canvas-box {
    background: var(--dark-navy);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.org-canvas-box img {
    filter: brightness(1.05) contrast(1.02);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.org-canvas-box:hover img {
    transform: scale(1.03);
}

.org-scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(198, 166, 100, 0.9);
    color: var(--primary-navy);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
    display: none;
}

.org-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.insight-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.insight-card i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.insight-card h6 {
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 8px;
}

.insight-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 1199px) {
    .org-insight-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .org-archive-container {
        padding: 20px;
        border-radius: 24px;
    }

    .org-canvas-box {
        padding: 20px;
        border-radius: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .org-canvas-box img {
        min-width: 800px;
    }

    /* Force scroll for readability */
    .org-scroll-hint {
        display: block;
    }

    .org-insight-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

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


/* =========================================================================
   ORGANIZATIONAL STRUCTURE PREMIUM STYLES
   ========================================================================= */

.org-container {
    background: radial-gradient(circle at center, rgba(201, 162, 39, 0.03) 0%, transparent 70%);
    border-radius: 40px;
    position: relative;
}

.divider-gold {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 2px;
}

.org-level-top,
.org-level-mid {
    display: flex;
    justify-content: center;
    position: relative;
}

.org-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(11, 31, 58, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11, 31, 58, 0.1);
    border-color: var(--primary-gold);
}

/* Leader Card Specifics */
.org-card.leader {
    max-width: 450px;
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.org-card-img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.org-card-img img {
    width: 100%;
    height: auto;
}

.org-card-body {
    padding-left: 25px;
    padding-right: 15px;
}

.org-card.leader .name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.org-card.leader .role {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.org-card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.nip {
    font-size: 0.75rem;
    color: #888;
}

/* Sub Leader Card (Sekretariat) */
.org-card.sub-leader {
    width: 320px;
    padding: 30px;
    border-top: 4px solid var(--primary-gold);
}

.org-card.sub-leader .name {
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

/* Bidang Cards */
.org-card.bidang {
    padding: 35px 25px;
    text-align: center;
    border-bottom: 4px solid transparent;
}

.org-card.bidang:hover {
    border-bottom-color: var(--primary-gold);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
}

.org-card.bidang .name {
    font-weight: 700;
    color: var(--primary-navy);
}

.sub-list li {
    padding: 6px 0;
    position: relative;
}

.sub-list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Connectors (Desktop Only) */
@media (min-width: 992px) {
    .org-level-top::after {
        content: "";
        position: absolute;
        bottom: -50px;
        left: 50%;
        width: 2px;
        height: 50px;
        background: var(--primary-gold);
        opacity: 0.3;
    }

    .org-level-mid::before {
        content: "";
        position: absolute;
        top: -50px;
        left: 50%;
        width: 2px;
        height: 50px;
        background: var(--primary-gold);
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .org-card.leader {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .org-card-body {
        padding-left: 0;
        margin-top: 20px;
    }
}

/* =========================================================================
   WELCOME SECTION (KADIN)
   ========================================================================= */
.welcome-section {
    position: relative;
    background: linear-gradient(135deg, #0B1F3A 0%, #061121 100%);
    z-index: 1;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-gold) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: -1;
}

.welcome-image-wrapper {
    position: relative;
    padding: 20px;
}

.welcome-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--primary-gold);
    border-radius: 24px;
    z-index: 0;
    transition: all 0.5s ease;
}

.welcome-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--primary-gold);
    opacity: 0.1;
    border-radius: 24px;
    z-index: 0;
    transition: all 0.5s ease;
}

.welcome-image-wrapper:hover::before {
    transform: translate(-10px, -10px);
}

.welcome-image-wrapper:hover::after {
    transform: translate(10px, 10px);
}

.welcome-img {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.welcome-image-wrapper:hover .welcome-img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.quote-icon-lg {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 120px;
    color: var(--primary-gold);
    opacity: 0.1;
    z-index: 0;
}

.welcome-text {
    position: relative;
    z-index: 1;
}

.welcome-signature {
    margin-top: 40px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-gold);
}

.signature-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.signature-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.welcome-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .welcome-text {
        text-align: left !important;
        margin-top: 30px;
    }

    .welcome-badge {
        margin-bottom: 15px;
    }

    .welcome-text h2 {
        font-size: 2rem !important;
    }

    .welcome-message p {
        font-size: 1rem !important;
    }

    .quote-icon-lg {
        font-size: 60px;
        top: -20px;
        left: -10px;
    }

    .welcome-signature {
        margin-top: 30px;
        padding-left: 15px;
    }

    .signature-name {
        font-size: 1.2rem;
    }

    .signature-title {
        font-size: 0.8rem;
    }

    .welcome-image-wrapper {
        padding: 10px;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* =========================================================================
   TIMELINE SECTION
   ========================================================================= */
.timeline-premium {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-premium::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(201, 162, 39, 0), rgba(201, 162, 39, 1), rgba(201, 162, 39, 0));
}

@media (max-width: 767.98px) {
    .timeline-premium::before {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 100px;
}

@media (max-width: 767.98px) {
    .timeline-item {
        padding-left: 60px;
    }
}

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

.timeline-icon {
    position: absolute;
    top: 0;
    left: 20px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 1), 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .timeline-icon {
        left: 0;
    }
}

.timeline-item:hover .timeline-icon {
    background: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-content {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: rotate(45deg);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.2);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary-gold);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* =========================================================================
   ACHIEVEMENT SECTION
   ========================================================================= */
.achievement-section {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    z-index: 1;
}

.achievement-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.achievement-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 162, 39, 0.2);
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon-wrap {
    background: var(--primary-gold);
    color: var(--white);
    transform: rotateY(360deg);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.achievement-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.achievement-bg-text {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* =========================================================================
   CULTURAL COMMITMENT SECTION
   ========================================================================= */
.commitment-premium {
    padding: 120px 0;
    background: linear-gradient(rgba(3, 8, 17, 0.85), rgba(11, 31, 58, 0.95)), url('https://picsum.photos/seed/culture-commit/1920/1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.commitment-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    pointer-events: none;
}

.commitment-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.commitment-card-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.commitment-card-modern .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary-gold);
    transition: all 0.4s ease;
}

.commitment-card-modern:hover .icon-box {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: scale(1.1) rotate(10deg);
}

.commitment-card-modern h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.commitment-card-modern p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================================================
   SERVICE COVERAGE AREA SECTION
   ========================================================================= */
.coverage-area-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.coverage-info-wrap {
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .coverage-info-wrap {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

.coverage-stat-list {
    margin-top: 35px;
}

.coverage-stat-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.coverage-stat-item:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(201, 162, 39, 0.2);
}

.coverage-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(201, 162, 39, 0.3);
}

.coverage-stat-text {
    flex-grow: 1;
}

.coverage-stat-text h5 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 2px;
}

.coverage-stat-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.map-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: var(--white);
    padding: 12px;
    box-shadow: 0 30px 60px rgba(11, 31, 58, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-frame-inner {
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    width: 100%;
}

@media (max-width: 767px) {
    .map-frame-inner {
        height: 350px;
    }
}

.map-floating-label {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-navy);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-floating-label i {
    color: var(--primary-gold);
}

/* =========================================================================
   PUBLIC TRANSPARENCY SECTION
   ========================================================================= */
.transparency-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.transparency-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.transparency-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(11, 31, 58, 0.08);
    border-color: rgba(201, 162, 39, 0.2);
}

.transparency-icon-box {
    width: 90px;
    height: 90px;
    background: #f8f9fa;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--primary-navy);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.transparency-card:hover .transparency-icon-box {
    background: var(--primary-navy);
    color: var(--white);
    transform: rotate(10deg);
}

.transparency-card h4 {
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.transparency-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.transparency-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 10px 10px 0 0;
    transition: width 0.4s ease;
}

.transparency-card:hover::after {
    width: 120px;
}

/* =========================================================================
   FAQ SECTION
   ========================================================================= */
.faq-premium {
    padding: 100px 0;
    background: var(--white);
}

.faq-premium .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px !important;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-premium .accordion-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-premium .accordion-button {
    padding: 25px 30px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    background-color: var(--white);
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-premium .accordion-button:not(.collapsed) {
    background-color: rgba(201, 162, 39, 0.03);
    color: var(--primary-gold);
}

.faq-premium .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b1f3a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-premium .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a227'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.faq-premium .accordion-body {
    padding: 0 30px 30px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* =========================================================================
   CALL TO ACTION SECTION
   ========================================================================= */
.cta-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #a8871d 100%);
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/az-subtle.png');
    opacity: 0.1;
    pointer-events: none;
}

.cta-premium h2 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    line-height: 1.2;
}

.cta-premium p {
    color: rgba(11, 31, 58, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
}

.btn-premium-dark {
    background: var(--primary-navy);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid var(--primary-navy);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(11, 31, 58, 0.2);
}

.btn-premium-dark:hover {
    background: transparent;
    color: var(--primary-navy);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 31, 58, 0.3);
}

.btn-premium-outline {
    background: transparent;
    color: var(--primary-navy);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid rgba(11, 31, 58, 0.3);
    transition: all 0.4s ease;
}

.btn-premium-outline:hover {
    background: rgba(11, 31, 58, 0.05);
    border-color: var(--primary-navy);
    transform: translateY(-5px);
}

.cta-floating-icon {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* =========================================================================
   RELATED PAGES SECTION
   ========================================================================= */
.related-pages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-page-card {
    background: var(--white);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.related-page-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.06);
    border-color: rgba(201, 162, 39, 0.2);
}

.related-page-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.related-page-card:hover .related-page-icon {
    background: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1);
}

.related-page-card h6 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.related-page-card:hover h6 {
    color: var(--primary-gold);
}

/* =========================================================================
/* 9. NEWS & PUBLICATION PAGES */
=========================================================================*/

/* 1. Page Header / Banner - Premium Hero Style */
.page-header-premium {
    background: linear-gradient(rgba(3, 8, 17, 0.6), rgba(3, 8, 17, 0.85)), url('https://picsum.photos/seed/news-hero-v3/1920/1080') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    padding: 80px 0 80px !important;
    position: relative !important;
    overflow: hidden !important;
    height: auto;
    min-height: 450px;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
}

.page-header-premium.news-bg {
    background: linear-gradient(rgba(3, 8, 17, 0.6), rgba(3, 8, 17, 0.85)), url('https://picsum.photos/seed/news-hero-v3/1920/1080') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.page-header-premium.culture-bg {
    background: linear-gradient(rgba(3, 8, 17, 0.6), rgba(3, 8, 17, 0.85)), url('https://picsum.photos/seed/culture-hero-v2/1920/1080') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.page-header-premium.events-bg {
    background: linear-gradient(rgba(3, 8, 17, 0.6), rgba(3, 8, 17, 0.85)), url('assets/images/events-hero.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.page-header-premium-ornament {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: url('assets/images/buton-pattern-light.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.page-header-premium .breadcrumb-premium {
    margin-bottom: 1rem !important;
}

.page-header-premium h1 {
    font-size: 3rem !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 0.5rem !important;
}

.page-header-premium p.lead {
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

/* Responsive Fixes for Page Header Banner */
@media (max-width: 991px) {
    .page-header-premium {
        height: auto;
        min-height: 50vh;
        padding: 80px 0 80px !important;
        text-align: center;
    }

    .page-header-premium .breadcrumb-premium {
        margin: 0 auto 20px;
    }

    .page-header-premium .hero-title-accent {
        margin: 25px auto !important;
    }

    .page-header-premium h1 {
        font-size: 2.4rem !important;
        line-height: 1.2 !important;
    }

    .page-header-premium p {
        font-size: 1rem !important;
        margin: 0 auto 30px !important;
    }
}

@media (max-width: 575px) {
    .page-header-premium h1 {
        font-size: 2rem !important;
    }

    .page-header-premium {
        min-height: 400px;
        padding: 80px 0 80px !important;
    }
}

/* 2. Featured News Layout */
.featured-news-section {
    padding: 30px 0 60px;
}

.featured-slider-main {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.featuredNewsSwiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.featuredNewsSwiper .swiper-pagination-bullet-active {
    background: var(--primary-gold);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.featuredNewsSwiper .swiper-pagination {
    bottom: auto !important;
    top: 30px !important;
    left: auto !important;
    right: 30px !important;
    width: auto !important;
    display: flex !important;
    gap: 8px;
    z-index: 10;
}

.featured-slide-item {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.featured-slide-img-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.featured-slide-img-container img {
    width: 100%;
    height: auto;
    transition: transform 8s ease-out;
}

.swiper-slide-active .featured-slide-img-container img {
    transform: scale(1.15);
}

.featured-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 50px;
    background: linear-gradient(to top, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.4) 50%, transparent 100%);
    color: var(--white);
}

.featured-grid-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    height: 450px;
}

.featured-small-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.featured-small-card img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

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

.featured-small-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(11, 31, 58, 0.9) 0%, transparent 100%);
}

/* 3. News Filters & Navigation */
.news-filter-wrap {
    position: relative;
}

.news-filter-bar {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-gold);
    /* Professional accent */
}

.filter-input,
.filter-select {
    height: 50px;
    border-radius: 12px !important;
    border: 1.5px solid #edf2f7 !important;
    background-color: #f8fafc !important;
    font-size: 0.9rem !important;
    font-weight: 500;
    color: var(--primary-navy) !important;
    transition: all 0.3s ease !important;
}

.filter-input:focus,
.filter-select:focus {
    background-color: var(--white) !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1) !important;
}

.filter-select-active {
    height: 50px;
    border-radius: 12px !important;
    border: 1.5px solid var(--primary-gold) !important;
    background-color: var(--primary-navy) !important;
    color: var(--white) !important;
    font-size: 0.9rem !important;
    font-weight: 700;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

.news-filter-bar .form-label {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem !important;
}

/* 4. News Cards Modernized */
.news-grid-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.news-grid-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(11, 31, 58, 0.12);
    border-color: rgba(201, 162, 39, 0.3);
}

.news-grid-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.news-grid-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 58, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news-grid-card:hover .news-grid-img-wrap::after {
    opacity: 1;
}

.news-grid-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.news-grid-card:hover .news-grid-img-wrap img {
    transform: scale(1.15);
}

.news-badge-wrap {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.news-badge-wrap .badge {
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news-grid-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 15px;
}

.news-title a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: var(--primary-navy);
    gap: 15px;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* 5. Multimedia Sections */
.photo-news-masonry {
    column-count: 3;
    column-gap: 20px;
}

.photo-news-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991.98px) {
    .photo-news-masonry {
        column-count: 2;
    }
}

@media (max-width: 575.98px) {
    .photo-news-masonry {
        column-count: 1;
    }
}

.video-news-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-news-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-news-card:hover .video-news-overlay {
    background: rgba(11, 31, 58, 0.6);
}

.play-icon-btn {
    width: 70px;
    height: 70px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 0 10px rgba(201, 162, 39, 0.2);
    transition: all 0.4s ease;
}

.video-news-card:hover .play-icon-btn {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(201, 162, 39, 0.3);
}

/* Sidebar Styles */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.popular-item {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Utilities & Extra Components */
.fw-black {
    font-weight: 900 !important;
}

.tracking-wider {
    letter-spacing: 0.1em !important;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.pagination-premium .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    margin: 0 5px;
    border: none;
    background: #f1f3f6;
    color: var(--primary-navy);
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination-premium .page-item.active .page-link {
    background: var(--primary-navy);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(11, 31, 58, 0.2);
}

.pagination-premium .page-link:hover:not(.active) {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

/* Timeline */
.sidebar-timeline {
    position: relative;
}

.timeline-post {
    padding-bottom: 25px;
}

.timeline-post:last-child {
    padding-bottom: 0;
}

.hover-gold:hover {
    color: var(--primary-gold) !important;
}

/* News-specific Responsive */
@media (max-width: 1199.98px) {
    .featured-slider-main {
        height: 450px;
        position: relative;
        overflow: hidden;
    }

    .featured-grid-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0;
        height: 450px;
    }
}

@media (max-width: 991.98px) {
    .featured-news-wrapper {
        flex-direction: column !important;
    }

    .featured-slider-main {
        height: 450px;
        position: relative;
        overflow: hidden;
    }

    .featured-grid-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0;
        height: 450px;
    }
}

@media (max-width: 767.98px) {
    .featured-slider-main {
        height: 450px;
        position: relative;
        overflow: hidden;
    }

    .featured-slide-content {
        padding: 30px;
    }
}

/* =========================================================================
   SIDEBAR MODERNIZED 
   ========================================================================= */

.sidebar-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.sidebar-card-header {
    padding: 20px 25px;
    border-bottom: 1.5px solid #f1f3f6;
}

.sidebar-card-body {
    padding: 25px;
}

.profile-card {
    position: relative;
}

.profile-card-banner {
    height: 100px;
    background: linear-gradient(45deg, var(--primary-navy), var(--dark-navy));
}

.profile-img-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid var(--white);
    overflow: hidden;
    margin: -55px auto 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.profile-img-wrap img {
    width: 100%;
    height: auto;
}

.btn-social-sm {
    width: 35px;
    height: 35px;
    background: #f1f3f6;
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-social-sm:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.ranked-item {
    padding: 20px 25px;
    border-bottom: 1px solid #f1f3f6;
    transition: background 0.3s;
}

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

.ranked-item:hover {
    background: #fafbfc;
}

.rank-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e2e8f0;
    margin-right: 20px;
    transition: color 0.3s;
    line-height: 1;
}

.ranked-item:hover .rank-number {
    color: var(--primary-gold);
}

.event-mini-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-date {
    width: 55px;
    height: 55px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-date .day {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tag-link {
    padding: 8px 16px;
    background: #f1f3f6;
    color: var(--primary-navy);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.tag-link:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: scale(1.05);
}

.newsletter-card {
    padding: 35px 30px;
    text-align: center;
    position: relative;
}

.newsletter-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.newsletter-form-inline {
    display: flex;
    gap: 10px;
}

.newsletter-form-inline .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
}

.newsletter-form-inline .btn {
    padding: 12px 20px;
    border-radius: 10px;
}

/* =========================================================================
   STATISTICS SECTION MODERNIZED 
   ========================================================================= */

.bg-gold-soft {
    background-color: rgba(201, 162, 39, 0.1);
}

.stat-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.08);
    border-color: rgba(201, 162, 39, 0.2);
}

.stat-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: var(--primary-navy);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.2);
    transition: all 0.4s ease;
}

.stat-card-modern:hover .stat-icon-circle {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
    color: var(--white);
}

.stat-info h2 {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.stat-card-modern:hover .stat-accent-line {
    transform: scaleX(1);
}

/* =========================================================================
/* 14. CONTACT & MAPS */
=========================================================================*/ .contact-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy), var(--primary-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-info-box:hover::before {
    opacity: 1;
}

.contact-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(11, 31, 58, 0.05);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    transition: all 0.4s ease;
}

.contact-info-box:hover .contact-icon-circle {
    background: var(--primary-navy);
    color: var(--primary-gold);
    transform: rotateY(360deg);
}

.contact-info-box h4 {
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.contact-info-box p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-main-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
}

.contact-form-side {
    padding: 60px;
    flex: 1 1 600px;
}

.contact-map-side {
    flex: 1 1 400px;
    min-height: 450px;
    position: relative;
}

.contact-form-side h2 {
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.contact-form-side p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.custom-form-group {
    margin-bottom: 25px;
}

.custom-form-group label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: block;
}

.custom-form-control {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    color: var(--primary-navy);
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-form-control:focus {
    background: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.1);
    outline: none;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: var(--primary-gold);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 31, 58, 0.3);
    color: var(--white);
}

.contact-social-connect {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-label {
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.social-pills {
    display: flex;
    gap: 12px;
}

.social-pill {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-pill:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-5px);
}

.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.faq-accordion .accordion-button {
    padding: 25px;
    font-weight: 700;
    color: var(--primary-navy);
    background: #f8f9fa;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-navy);
    color: var(--primary-gold);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: grayscale(1) invert(0);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(80%) sepia(50%) saturate(1000%) hue-rotate(1deg);
}

.faq-accordion .accordion-body {
    padding: 25px;
    color: var(--text-muted);
    line-height: 1.8;
    background: var(--white);
}

@media (max-width: 991px) {
    .contact-form-side {
        padding: 40px;
    }
}

.banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v 4h-4v 2h4v 4h2v-4h4v-2h-4zM6 34v-4H4v 4H0v 2h4v 4h2v-4h4v-2H6zM6 4V0H4v 4H0v 2h4v 4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--primary-gold);
    z-index: 10;
    min-width: 250px;
}

/* =========================================================================
   OFFICIAL DOCUMENTS & HERITAGE SPOTLIGHT 
   ========================================================================= */

.doc-item-card {
    background: #fdfdfd;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-color: #f1f3f6 !important;
}

.doc-item-card:hover {
    transform: translateX(10px);
    background: var(--white);
    border-color: var(--primary-gold) !important;
}

.btn-light-gold {
    background-color: #fef9e7;
    color: var(--primary-gold);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.btn-light-gold:hover {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
}

.heritage-spot-card {
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.heritage-spot-card img {
    width: 100%;
    height: auto;
    transition: transform 1s ease;
}

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

.heritage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 58, 0.9) 0%, rgba(11, 31, 58, 0.4) 50%, transparent 100%);
    transition: background 0.5s ease;
}

.heritage-spot-card:hover .heritage-overlay {
    background: linear-gradient(to top, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.6) 100%);
}

.hover-shadow:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* Profile Card Refinements */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.4);
}

.agency-badge {
    background: #f8fafc;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    border: 1px solid #edf2f7;
}

.profile-quote {
    font-style: italic;
    line-height: 1.6;
    position: relative;
    color: var(--primary-navy);
}

.social-divider {
    position: relative;
    height: 1px;
    background: #edf2f7;
    text-align: center;
}

.social-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.popular-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.popular-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

/* Modernized Breaking News */
.breaking-news-modern {
    background: var(--primary-navy);
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    margin: 0;
    border: none;
}

.breaking-tag {
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    z-index: 2;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-navy);
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(11, 31, 58, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(11, 31, 58, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(11, 31, 58, 0);
    }
}

.breaking-content {
    flex-grow: 1;
    overflow: hidden;
    padding: 0 20px;
}

.news-ticker-link {
    color: var(--white);
    text-decoration: none;
    margin-right: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Featured Section Responsive Fixes */
@media (max-width: 991px) {
    .featured-slider-main {
        height: 320px !important;
        position: relative;
        overflow: hidden;
    }

    .featured-grid-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0;
        height: 320px !important;
    }

    .featured-small-card {
        position: relative;
        overflow: hidden;
        height: 160px !important;
    }

    .featured-slider-main .btn {
        display: none !important;
    }

    .featured-slide-content {
        padding: 30px !important;
        background: linear-gradient(to top, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.6) 60%, transparent 100%) !important;
    }

    .featured-slide-content h2 {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 767px) {
    .breaking-news-modern {
        flex-direction: column;
        border-radius: 0;
        padding: 0;
        border: none;
    }

    .breaking-tag {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
        padding: 8px 20px;
        font-size: 0.75rem !important;
    }

    .breaking-content {
        width: 100%;
        padding: 8px 10px;
    }

    .featured-slider-main {
        height: 280px !important;
        position: relative;
        overflow: hidden;
    }

    .featured-slide-content {
        padding: 25px 20px 30px 20px !important;
        background: linear-gradient(to top, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.7) 70%, transparent 100%) !important;
    }

    .featured-slide-content h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .featured-slide-content .btn {
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
    }

    .featured-slide-meta {
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px !important;
        flex-wrap: wrap;
    }

    .featured-grid-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0;
        height: 280px !important;
    }

    .featured-small-card {
        position: relative;
        overflow: hidden;
        height: 140px !important;
    }

    .featured-small-overlay {
        padding: 12px !important;
    }

    .featured-small-overlay h6 {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
    }

    .featured-small-overlay span {
        font-size: 0.65rem !important;
    }

    .featured-slide-content .btn {
        display: none !important;
    }

    .featuredNewsSwiper .swiper-pagination {
        top: 20px !important;
        right: 20px !important;
    }
}

/* Hover Gold Effect */
.hover-gold {
    transition: color 0.3s ease;
}

.hover-gold:hover {
    color: var(--primary-gold) !important;
}


.social-divider span {
    letter-spacing: 1px;
    font-weight: 800;
    font-size: 0.6rem;
}

/* Institutional Social Branded */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 31, 58, 0.4), rgba(11, 31, 58, 0.1));
}

.social-link-branded {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #edf2f7;
}

.social-link-branded.fb {
    color: #1877F2;
}

.social-link-branded.ig {
    color: #E4405F;
}

.social-link-branded.yt {
    color: #FF0000;
}

.social-link-branded.web {
    color: var(--primary-gold);
}

.social-link-branded:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-color: rgba(201, 162, 39, 0.3);
}

/* =========================================================================
   OFFICIAL SOCIAL MEDIA CHANNELS 
   ========================================================================= */

.social-channel-item {
    transition: background 0.3s ease;
}

.social-channel-item:hover {
    background-color: #fafbfc;
}

.social-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-icon-box.fb {
    background: #1877F2;
}

.social-icon-box.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-box.yt {
    background: #FF0000;
}

.social-channel-item .badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.social-channel-item:hover .badge {
    background-color: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
}

/* =========================================================================
   INTERACTIVE RANKED POPULAR NEWS 
   ========================================================================= */

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 77, 77, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    }
}

.ranked-item-modern {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #f1f3f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--white);
}

.ranked-item-modern:last-child {
    border-bottom: none;
}

.rank-side {
    width: 40px;
    flex-shrink: 0;
}

.rank-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e2e8f0;
    transition: all 0.3s ease;
    line-height: 1;
}

.rank-preview {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(10px);
}

.ranked-item-modern:hover,
.ranked-item-modern.active {
    background-color: #fafbfc;
}

.ranked-item-modern:hover .rank-num,
.ranked-item-modern.active .rank-num {
    color: var(--primary-gold);
    transform: scale(1.2);
}

.ranked-item-modern:hover .rank-preview,
.ranked-item-modern.active .rank-preview {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
    transform: translateY(0);
}

.rank-preview img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

/* =========================================================================
   COLLAPSIBLE FILTER ANIMATION 
   ========================================================================= */

.btn-navy {
    background-color: var(--primary-navy);
    color: var(--white);
    border: none;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: var(--dark-navy);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.collapse {
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#filterCollapse {
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Button state when expanded */
.filter-actions button[aria-expanded='true'] {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
}

.filter-actions button[aria-expanded='true'] i {
    color: var(--primary-navy) !important;
}

/* =========================================================================
   FILTER SUBMIT BUTTON 
   ========================================================================= */

.filter-submit-btn {
    height: 50px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.2);
}

.filter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
    background-color: var(--primary-navy);
    color: var(--primary-gold);
    border-color: var(--primary-navy);
}


/* =========================================================================
   NEWS SINGLE / DETAIL PAGE STYLES
   ========================================================================= */

/* 1. Article Hero Section */
.article-hero {
    position: relative;
    padding: 100px 0 60px;
    background: var(--primary-navy);
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.article-hero-bg img {
    width: 100%;
    height: auto;
    filter: blur(5px);
}

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

.breadcrumb-article .breadcrumb-item,
.breadcrumb-article .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-article .breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-article .breadcrumb-item.active {
    color: var(--white);
}

.article-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.article-main-title {
    color: var(--white);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    align-items: center;
}

.article-hero-meta span i {
    color: var(--primary-gold);
}

/* 2. Meta Info Bar */
.meta-info-bar {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.meta-item strong {
    color: var(--primary-navy);
}

.meta-actions {
    display: flex;
    gap: 10px;
}

.btn-action-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f8fafc;
    color: var(--primary-navy);
    border: 1.5px solid #edf2f7;
    transition: all 0.3s ease;
}

.btn-action-sm:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* 3. Main Content Area */
.article-body-container {
    padding: 60px 0;
}

.article-main-content {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(11, 31, 58, 0.03);
    color: #334155;
}

.article-rich-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-rich-text p {
    margin-bottom: 25px;
}

.article-rich-text h2,
.article-rich-text h3 {
    color: var(--primary-navy);
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 25px;
}

.article-rich-text h2 {
    font-size: 1.8rem;
}

.article-rich-text h3 {
    font-size: 1.45rem;
}

.article-rich-text .lead {
    font-size: 1.3rem;
    color: var(--primary-navy);
    font-weight: 600;
    line-height: 1.6;
    border-left: 5px solid var(--primary-gold);
    padding-left: 25px;
    margin-bottom: 40px;
}

.article-img-wrap {
    /* margin: 45px 0; */
}

.article-img-wrap img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.article-img-caption {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

.quote-modern {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    margin: 50px 0;
    position: relative;
    border-left: 8px solid var(--primary-navy);
}

.quote-modern p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-navy);
    font-weight: 500;
    margin-bottom: 15px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-author strong {
    color: var(--primary-gold);
}

/* 4. Gallery Grid */
.article-gallery {
    margin: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* 5. Documents Section */
.related-docs {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 24px;
    margin-top: 50px;
}

.doc-item {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.doc-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.doc-icon {
    font-size: 1.5rem;
    color: #ef4444;
}

/* 6. Tags & Share Footer */
.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1.5px solid #f1f5f9;
}

.tags-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag-badge {
    padding: 8px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-color: var(--primary-gold);
}

.share-minimal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-btn-round {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.share-btn-round:hover {
    transform: translateY(-5px);
    color: var(--white);
}

/* 7. Author Box */
.author-box {
    background: var(--primary-navy);
    padding: 40px;
    border-radius: 25px;
    margin-top: 60px;
    color: var(--white);
    display: flex;
    gap: 30px;
    align-items: center;
}

.author-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(201, 162, 39, 0.3);
    flex-shrink: 0;
}

.author-info h5 {
    color: var(--primary-gold);
    font-weight: 800;
    margin-bottom: 5px;
}

.author-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* 8. Prev/Next Navigation */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.nav-post-card {
    background: var(--white);
    padding: 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.nav-post-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-gold);
}

.nav-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

/* 9. Sidebar Sticky */
.sidebar-sticky {
    position: sticky;
    top: 130px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sidebar-title-modern {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-gold);
    display: inline-block;
}

/* 10. Related Grid */
.related-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .article-main-content {
        padding: 30px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .article-main-title {
        font-size: 2.2rem;
    }

    .article-rich-text {
        font-size: 1rem;
        line-height: 1.75;
    }

    .article-rich-text .lead {
        font-size: 1.2rem;
        padding-left: 20px;
    }

    .article-rich-text h2 {
        font-size: 1.65rem;
        margin-top: 40px;
    }

    .article-rich-text h3 {
        font-size: 1.35rem;
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .meta-info-bar {
        margin-top: 0;
        border-radius: 0;
        padding: 20px;
    }

    .article-hero {
        padding: 60px 0 40px;
    }

    .article-main-title {
        font-size: 1.6rem;
    }

    .article-rich-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .article-rich-text .lead {
        font-size: 1.05rem;
        padding-left: 15px;
        margin-bottom: 25px;
    }

    .article-rich-text h2 {
        font-size: 1.35rem;
        margin-top: 35px;
    }

    .article-rich-text h3 {
        font-size: 1.15rem;
        margin-top: 30px;
    }

    .quote-modern {
        padding: 25px;
        margin: 30px 0;
    }

    .quote-modern p {
        font-size: 1.05rem;
    }
}

.bg-gradient-navy {
    background: linear-gradient(to top, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.5) 70%, transparent 100%);
}

/* Animated Line for Hero */
.hero-line-animated {
    height: 3px;
    background: linear-gradient(to right, var(--primary-gold), transparent);
    width: 0;
    margin: 25px 0;
    position: relative;
    border-radius: 50px;
    animation: lineExpand 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100px;
        opacity: 1;
    }
}

/* Responsive tweaks for news-single hero */
@media (max-width: 1199px) {
    .page-header-premium {
        min-height: auto !important;
        padding: 80px 0 80px !important;
    }
}

@media (max-width: 991px) {
    .page-header-premium .display-3 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 767px) {
    .page-header-premium .display-3 {
        font-size: 2rem !important;
    }

    .page-header-premium {
        padding: 80px 0 80px !important;
    }

    .hero-line-animated {
        margin: 15px 0;
    }

    .page-header-premium .d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* Premium Hero Items Style */
.meta-pill-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.meta-pill-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(201, 162, 39, 0.4);
}

.share-link-premium {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-link-premium:hover {
    transform: translateY(-3px) rotate(8deg);
    color: #fff;
}

.share-link-premium.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.share-link-premium.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.share-link-premium.x-twitter:hover {
    background: #000;
    border-color: #444;
}

.share-link-premium.copy-link:hover {
    background: #C9A227;
    border-color: #C9A227;
}

.btn-glass-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-glass-premium:hover {
    background: #C9A227;
    color: #0B1F3A;
    border-color: #C9A227;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.2);
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Modern Meta Badges & Actions in News Detail */
.meta-badge-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.meta-badge-premium i {
    color: #C9A227;
}

.meta-badge-premium:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.meta-badge-premium.secondary {
    opacity: 0.7;
}

.share-actions-modern {
    padding-right: 15px;
}

.share-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-icon:hover {
    transform: translateY(-3px) scale(1.1);
    color: #fff;
}

.share-icon.fb:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.share-icon.wa:hover {
    background: #25d366;
    border-color: #25d366;
}

.share-icon.x:hover {
    background: #000;
    border-color: #333;
}

.share-icon.tg:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.btn-premium-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium-action i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-premium-action:hover {
    background: #C9A227;
    border-color: #C9A227;
    color: #0B1F3A;
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.3);
}

.btn-premium-action:hover i {
    transform: scale(1.2);
}

/* Refined Hero Styles for News Single */
.meta-divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

.share-btn-premium {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-btn-premium:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-btn-premium.fb:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.share-btn-premium.wa:hover {
    background: #25d366;
    border-color: #25d366;
}

.share-btn-premium.tw:hover {
    background: #000000;
    border-color: #000000;
}

.btn-premium-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-premium-outline:hover {
    background: #C9A227;
    border-color: #C9A227;
    color: #0B1F3A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

.action-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}

/* 15. UTILITIES & ANIMATIONS (Statistics & Tickers) */
.stats-section {
    background: #fdfdfd;
    position: relative;
    z-index: 1;
}

.stats-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-card-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(11, 31, 58, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.08);
    border-color: rgba(201, 162, 39, 0.2);
}

.stat-card-modern:hover::before {
    opacity: 1;
}

.stat-icon-circle {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--primary-navy);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    z-index: 1;
}

.stat-card-modern:hover .stat-icon-circle {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.2);
}

.stat-info {
    position: relative;
    z-index: 1;
}

.stat-info h2 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    background: linear-gradient(45deg, var(--primary-navy), #1e293b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-accent-line {
    width: 40px;
    height: 4px;
    background: var(--primary-gold);
    margin: 20px auto 0;
    border-radius: 50px;
    transition: width 0.4s ease;
}

.stat-card-modern:hover .stat-accent-line {
    width: 80px;
}

.bg-gold-soft {
    background-color: rgba(201, 162, 39, 0.1);
}

/* Glass Effect Meta Row */
.meta-glass-wrap {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 100px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.meta-divider-light {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .meta-glass-wrap {
        border-radius: 24px;
        padding: 15px;
        width: 100%;
        justify-content: center;
        gap: 15px !important;
    }
}

/* Glassmorphism Meta Row */
.meta-glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 30px;
    display: inline-flex;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .meta-glass-container {
        padding: 12px 20px;
        border-radius: 24px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px !important;
    }
}

.meta-item-premium {
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item-premium:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-1px);
}

.meta-item-premium i {
    transition: all 0.3s ease;
}

.meta-item-premium:hover i {
    transform: scale(1.2);
}




@media (max-width: 575px) {
    .meta-glass-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px !important;
        padding: 20px;
        width: 100%;
    }

    .meta-item-premium {
        justify-content: center;
        font-size: 0.8rem;
    }
}

/* Premium Glass Share Buttons */
.share-glass-group {
    display: flex;
    align-items: center;
}

/* Glass Share Buttons */
.share-glass-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.share-glass-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.share-glass-btn:hover {
    transform: translateY(-5px) rotate(8deg);
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.share-glass-btn i {
    transition: transform 0.3s ease;
}

.share-glass-btn:hover i {
    transform: scale(1.2);
}

.share-glass-btn.facebook:hover {
    background: #3b5998 !important;
    color: #fff !important;
    border-color: #3b5998 !important;
}

.share-glass-btn.whatsapp:hover {
    background: #25d366 !important;
    color: #fff !important;
    border-color: #25d366 !important;
}

.share-glass-btn.telegram:hover {
    background: #0088cc !important;
    color: #fff !important;
    border-color: #0088cc !important;
}

.share-glass-btn.x-twitter:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #333 !important;
}

.copy-link-glass {
    padding: 9px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.copy-link-glass:hover {
    background: #fff;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.share-glass-btn.dark {
    background: rgba(11, 31, 58, 0.05);
    border-color: rgba(11, 31, 58, 0.1);
    color: var(--primary-navy);
}

.share-glass-btn.dark:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .share-glass-container {
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .share-glass-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .copy-link-glass {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
}


/* =========================================================================
   CONTACT PAGE STYLES
   ========================================================================= */
.contact-section {
    padding: 100px 0;
    background: var(--light-bg);

}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;

}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;

}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy), var(--primary-gold));
    opacity: 0;
    transition: opacity 0.4s ease;

}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);

}

.contact-info-box:hover::before {
    opacity: 1;

}

.contact-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(11, 31, 58, 0.05);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    transition: all 0.4s ease;

}

.contact-info-box:hover .contact-icon-circle {
    background: var(--primary-navy);
    color: var(--primary-gold);
    transform: rotateY(360deg);

}

.contact-info-box h4 {
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.25rem;

}

.contact-info-box p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;

}

.contact-main-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;

}

.contact-form-side {
    padding: 60px;
    flex: 1 1 600px;

}

.contact-map-side {
    flex: 1 1 400px;
    min-height: 450px;
    position: relative;

}

.contact-form-side h2 {
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;

}

.contact-form-side p {
    color: var(--text-muted);
    margin-bottom: 40px;

}

.custom-form-group {
    margin-bottom: 25px;

}

.custom-form-group label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: block;

}

.custom-form-control {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    color: var(--primary-navy);
    font-weight: 500;
    transition: all 0.3s ease;

}

.custom-form-control:focus {
    background: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.1);
    outline: none;

}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: var(--primary-gold);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;

}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 31, 58, 0.3);
    color: var(--white);

}

.contact-social-connect {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;

}

.social-label {
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;

}

.social-pills {
    display: flex;
    gap: 12px;

}

.social-pill {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 18px;
    transition: all 0.3s ease;

}

.social-pill:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-5px);

}

.faq-section {
    padding: 100px 0;
    background: var(--white);

}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);

}

.faq-accordion .accordion-button {
    padding: 25px;
    font-weight: 700;
    color: var(--primary-navy);
    background: #f8f9fa;
    border: none;

}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-navy);
    color: var(--primary-gold);
    box-shadow: none;

}

.faq-accordion .accordion-button::after {
    filter: grayscale(1) invert(0);

}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(80%) sepia(50%) saturate(1000%) hue-rotate(1deg);

}

.faq-accordion .accordion-body {
    padding: 25px;
    color: var(--text-muted);
    line-height: 1.8;
    background: var(--white);

}

@media (max-width: 991px) {
    .contact-form-side {
        padding: 40px;

    }


}

.banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width=\
    60\ height=\60\ viewBox=\0 0 60 60\ xmlns=\http://www.w3.org/2000/svg\%3E%3Cg fill=\none\ fill-rule=\evenodd\%3E%3Cg fill=\%23C9A227\ fill-opacity=\0.05\%3E%3Cpath d=\M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z\/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.3;
    z-index: 1;
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--primary-gold);
    z-index: 10;
    min-width: 250px;
}

/* =========================================================================
   CONTACT PAGE STYLES
   ========================================================================= */

.page-header-premium.contact-bg {
    background-image: linear-gradient(rgba(11, 31, 58, 0.8), rgba(11, 31, 58, 0.95)), url('https://images.unsplash.com/photo-1577563906417-45a11b3f9f7c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    padding: 10rem 0 6rem;
}

.contact-info-grid {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.glass-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.glass-info-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(11, 31, 58, 0.15);
}

.info-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
}

.glass-info-card:hover .info-icon-wrapper {
    background: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.contact-form-premium {
    background: var(--white);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-label-modern {
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-modern {
    border-radius: 12px;
    padding: 1rem 1.2rem;
    border: 1px solid #edf2f7;
    background-color: #f8fafc;
    transition: all 0.3s;
}

.form-control-modern:focus {
    background-color: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
    outline: none;
}

.sidebar-contact-card {
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.sidebar-contact-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary-gold);
    opacity: 0.1;
    border-radius: 50%;
}

.social-link-pill {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.social-link-pill:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateX(10px);
    border-color: var(--primary-gold);
}

.social-link-pill i {
    width: 30px;
    font-size: 1.1rem;
}

.social-channel-item-light {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-channel-item-light:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-color: var(--primary-gold);
}

.social-icon-box-sm {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon-box-sm.fb {
    background: #1877F2;
}

.social-icon-box-sm.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-box-sm.yt {
    background: #FF0000;
}

.social-icon-box-sm.tk {
    background: #000000;
}

.social-channel-info-sm {
    margin-left: 15px;
}

.social-channel-info-sm h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
    letter-spacing: 0.3px;
}

.social-channel-info-sm span {
    font-size: 0.72rem;
    opacity: 0.6;
    color: white;
    display: block;
}

.social-channel-arrow {
    margin-left: auto;
    color: var(--primary-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    font-size: 0.8rem;
}

.social-channel-item-light:hover .social-channel-arrow {
    opacity: 1;
    transform: translateX(0);
}

.faq-minimal .accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-minimal .accordion-button {
    padding: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    background: var(--white);
}

.faq-minimal .accordion-button:not(.collapsed) {
    background: rgba(201, 162, 39, 0.05);
    color: var(--primary-gold);
}

.wa-float-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float-btn:hover {
    transform: scale(1.05) translateY(-5px);
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.wa-float-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* =========================================================================
/* 13. EVENTS & CALENDAR */
=========================================================================*/ .events-hero-premium {
    background: linear-gradient(rgba(11, 31, 58, 0.7), rgba(11, 31, 58, 0.9)), url('assets/images/events-hero.png') center/cover fixed;
    padding: 12rem 0 8rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.events-hero-premium::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light-bg), transparent);
}

.event-filter-bar {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(11, 31, 58, 0.12);
    margin-top: -60px;
    margin-bottom: 4rem;
    position: relative;
    z-index: 20;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.filter-group-premium {
    position: relative;
    margin-bottom: 0;
}

.filter-group-premium .form-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
}

.filter-select-modern {
    border: 1px solid #eef2f6;
    background-color: #fcfdfe;
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.filter-select-modern:hover {
    border-color: var(--primary-gold);
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.filter-select-modern:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    outline: none;
    background-color: #fff;
}

.filter-search-wrapper {
    position: relative;
}

.filter-search-wrapper i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    z-index: 5;
}

.filter-search-wrapper .form-control {
    padding-left: 3rem;
}

.btn-filter-action {
    background: var(--primary-navy);
    color: var(--white);
    border: none;
    border-radius: 14px;
    height: 100%;
    min-height: 54px;
    transition: all 0.3s;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-filter-action:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.3);
}

.featured-event-spotlight {
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(11, 31, 58, 0.1);
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6rem;
    position: relative;
    border: 1px solid rgba(201, 162, 39, 0.05);
}

.featured-event-img-wrapper {
    flex: 0 0 55%;
    min-height: 550px;
    position: relative;
    overflow: hidden;
}

.featured-event-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, rgba(255, 255, 255, 0.1));
}

.featured-event-img-wrapper img {
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-event-spotlight:hover .featured-event-img-wrapper img {
    transform: scale(1.05);
}

.featured-event-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('assets/images/buton-pattern-light.png');
    background-size: 400px;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
}

.featured-date-float {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-align: center;
    border: 1px solid var(--white);
}

.featured-date-float .day {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
}

.featured-date-float .month {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .featured-event-img-wrapper {
        flex: 0 0 100%;
        min-height: 400px;
    }

    .featured-event-content {
        padding: 3rem 2rem;
    }
}

.calendar-modern-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-label {
    text-align: center;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.calendar-date {
    min-height: 85px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

@media (max-width: 767px) {
    .calendar-date {
        min-height: auto;
        aspect-ratio: 1;
        padding: 5px;
    }
}

.calendar-date:hover:not(.empty) {
    background: #f8fafc;
    color: var(--primary-gold);
}

.calendar-date.has-event {
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary-gold);
}

.calendar-date.has-event::after {
    content: '';
    position: absolute;
    bottom: 6px;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.calendar-date.active {
    background: var(--primary-gold);
    color: var(--white);
}

.event-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.event-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.1);
}

.event-card-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: auto;
    transition: transform 0.6s;
}

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

.event-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.status-upcoming {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.status-ongoing {
    background: #10b981;
    color: var(--white);
}

.status-past {
    background: #64748b;
    color: var(--white);
}

.event-info-strip {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.info-strip-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

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

.info-strip-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    color: var(--primary-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item-premium img {
    width: 100%;
    height: auto;
    transition: all 0.5s;
}

.gallery-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 31, 58, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s;
    transform: translateY(20px);
}

.gallery-item-premium:hover img {
    transform: scale(1.1);
}

.gallery-item-premium:hover .gallery-overlay-premium {
    opacity: 1;
    transform: translateY(0);
}

.event-stat-card {
    background: var(--primary-navy);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s;
}

.event-stat-card:hover {
    background: var(--dark-navy);
    border-color: var(--primary-gold);
}

.event-sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.sidebar-event-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #edf2f7;
}

.sidebar-event-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-event-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
}

.sidebar-event-thumb img {
    width: 100%;
    height: auto;
}

.reg-cta-premium {
    background: var(--primary-navy);
    border-radius: 30px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.reg-cta-premium::after {
    content: '\f66f';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 15rem;
    color: var(--primary-gold);
    opacity: 0.05;
    transform: rotate(-15deg);
}

/* 11. EMPLOYEE & ORGANIZATIONAL PAGES */
.employees-bg {
    background: linear-gradient(rgba(3, 8, 17, 0.7), rgba(3, 8, 17, 0.7)), url('assets/images/hero-employees.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
}

.employee-filter-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(3, 8, 17, 0.12);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(198, 166, 100, 0.15);
}

.filter-group {
    position: relative;
}

.filter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.filter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--primary-gold);
    font-size: 1rem;
    pointer-events: none;
}

.filter-control {
    width: 100%;
    padding: 1rem 1.2rem 1rem 3rem;
    background: #f8faff;
    border: 2px solid transparent;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-navy);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-control:focus {
    background: #fff;
    border-color: var(--primary-gold);
    box-shadow: 0 10px 20px rgba(198, 166, 100, 0.1);
    outline: none;
}

.filter-group:focus-within .filter-label {
    color: var(--primary-gold);
    opacity: 1;
}

.filter-group:focus-within .filter-icon {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.filter-results-summary {
    display: none;
}

select.filter-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C6A664' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
}

.btn-filter-premium {
    background: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-filter-premium:hover {
    background: var(--dark-navy);
    color: var(--primary-gold);
    border-color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 8, 17, 0.2);
}

.employee-card-modern {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(3, 8, 17, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(3, 8, 17, 0.03);
}

.employee-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(3, 8, 17, 0.1);
    border-color: var(--primary-gold);
}

.employee-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f1f4f8;
}

.employee-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.employee-card-modern:hover .employee-img-wrapper img {
    transform: scale(1.08);
}

.employee-badge-dept {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(3, 8, 17, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.employee-content {
    padding: 1.8rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.employee-name {
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.employee-position {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    min-height: 2.2em;
    /* Ensure some vertical space for long titles */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.employee-nip {
    font-size: 0.75rem;
    color: #8a94a6;
    font-weight: 500;
}

.btn-view-profile {
    background: rgba(3, 8, 17, 0.03);
    color: var(--primary-navy);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(3, 8, 17, 0.05);
}

.btn-view-profile:hover {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--primary-navy);
    transform: translateY(-2px);
}

/* Featured Leadership Card */
.leader-featured-section {
    background: linear-gradient(135deg, #030811 0%, #0a1428 100%);
    border-radius: 40px;
    padding: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem;
    border: 1px solid rgba(198, 166, 100, 0.3);
}

.leader-featured-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.leader-img-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.leader-content {
    padding-left: 2rem;
}

.leader-content .role-label {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Dept Section Headers */
.dept-section-header {
    margin-bottom: 3rem;
    border-bottom: 2px solid rgba(198, 166, 100, 0.1);
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.dept-section-header>div {
    flex: 1;
}

@media (min-width: 992px) {
    .dept-section-header>div {
        max-width: 60%;
    }
}

.dept-section-header h3 {
    font-weight: 900;
    color: var(--primary-navy);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.dept-count {
    flex-shrink: 0;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
}

/* Statistics Counters - Premium Version */
.emp-stats-premium {
    background: var(--primary-navy);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(3, 8, 17, 0.85), rgba(3, 8, 17, 0.85)), url('assets/images/pattern-batik.png');
    background-size: cover;
    background-attachment: fixed;
}

.emp-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(198, 166, 100, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.emp-stat-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.emp-stat-card-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.emp-stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(198, 166, 100, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    font-size: 2.2rem;
    transition: all 0.4s;
    border: 1px solid rgba(198, 166, 100, 0.2);
}

.emp-stat-card-premium:hover .emp-stat-icon-wrapper {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: rotate(10deg);
}

.emp-stat-info h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: -1px;
}

.emp-stat-info p {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 0;
    opacity: 0.9;
}

/* Modal Styling */
.modal-content-premium {
    border-radius: 30px;
    border: none;
    overflow: hidden;
}

.modal-header-premium {
    background: var(--primary-navy);
    color: white;
    padding: 2rem;
    border: none;
}

.modal-body-premium {
    padding: 3rem;
}

.profile-detail-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .profile-detail-grid {
        grid-template-columns: 1fr;
    }

    .leader-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

.detail-section-title {
    font-weight: 800;
    color: var(--primary-navy);
    border-left: 4px solid var(--primary-gold);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
}

.info-list-modern {
    list-style: none;
    padding: 0;
}

.info-list-modern li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
}

/* 12. Employee Profile Detail Page - Premium Upgrade */
.profile-main-section {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    /* Overlap with hero */
    padding-bottom: 80px;
}

.profile-card-sticky {
    position: sticky;
    top: 120px;
}

.profile-photo-card {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    border: none;
    box-shadow: 0 30px 60px rgba(3, 8, 17, 0.12);
}

.profile-photo-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.profile-photo-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.profile-status-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #27ae60;
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
    z-index: 2;
}

.profile-sidebar-body {
    padding: 2.5rem 2rem;
    background: linear-gradient(to bottom, #ffffff, #f8faff);
}

.social-link-item {
    width: 45px;
    height: 45px;
    background: #f1f4f8;
    color: var(--primary-navy);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link-item:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-5px) rotate(8deg);
}

.info-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(198, 166, 100, 0.2);
}

.info-row:last-child {
    border-bottom: none;
}

.info-icon {
    width: 42px;
    height: 42px;
    background: rgba(198, 166, 100, 0.12);
    color: var(--primary-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.info-label {
    font-size: 0.65rem;
    color: #a0aec0;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-value {
    font-size: 0.95rem;
    color: var(--primary-navy);
    font-weight: 700;
}

.profile-content-card {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(198, 166, 100, 0.08);
    box-shadow: 0 20px 40px rgba(3, 8, 17, 0.05);
    position: relative;
}

.profile-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: url('assets/images/pattern-batik.png');
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
}

.profile-section-title {
    background: rgba(198, 166, 100, 0.04);
    padding: 2rem 2.5rem;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-navy);
    border-bottom: 1px solid rgba(198, 166, 100, 0.1);
    display: flex;
    align-items: center;
}

.profile-section-title i {
    font-size: 1.5rem;
    margin-right: 1.2rem;
    color: var(--primary-gold);
}

.profile-section-body {
    padding: 3rem 2.5rem;
}

.bio-quote {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.5;
    position: relative;
    padding-left: 2rem;
    border-left: 5px solid var(--primary-gold);
}

/* Timeline V3 */
.timeline-premium {
    position: relative;
    padding-left: 40px;
}

.timeline-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-gold) 0%, rgba(198, 166, 100, 0.1) 100%);
}

.timeline-item-premium {
    position: relative;
    margin-bottom: 3.5rem;
}

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

.timeline-dot {
    position: absolute;
    left: -48px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: white;
    border: 4px solid var(--primary-gold);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s;
}

.timeline-item-premium:hover .timeline-dot {
    background: var(--primary-gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(198, 166, 100, 0.5);
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.timeline-location {
    font-weight: 600;
    color: #718096;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.achievement-pill {
    background: #f8faff;
    padding: 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(198, 166, 100, 0.1);
    display: flex;
    align-items: center;
    transition: all 0.4s;
}

.achievement-pill:hover {
    background: #ffffff;
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(198, 166, 100, 0.15);
}

.achievement-icon-v2 {
    width: 55px;
    height: 55px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.smaller {
    font-size: 0.75rem;
}

/* 13. Employee Card V2 - "Minimalist Corporate" - Enhanced Interactivity */
.employee-card-v2 {
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 10px;
    overflow: hidden;
}

.employee-card-v2::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 60%,
            transparent 100%);
    transition: all 0.7s;
    pointer-events: none;
    z-index: 5;
}

.employee-card-v2:hover::before {
    top: 100%;
    left: 100%;
}

.employee-card-v2:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 25px 50px rgba(3, 8, 17, 0.15);
    transform: translateY(-5px);
}

.employee-card-v2 .v2-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f7fafc;
}

.employee-card-v2 .v2-img-wrapper img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.employee-card-v2:hover .v2-img-wrapper img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.employee-card-v2 .v2-dept-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-gold);
    color: var(--primary-navy);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.employee-card-v2 .v2-dept-tag.status-pns {
    background: #c6a664;
    /* Gold */
}

.employee-card-v2 .v2-dept-tag.status-pppk {
    background: #2d3748;
    /* Dark Navy */
    color: #fff;
}

.employee-card-v2 .v2-dept-tag.status-paruh-waktu {
    background: #718096;
    /* Slate Gray */
    color: #fff;
}

.employee-card-v2 .v2-content {
    padding: 1.5rem 1rem 1rem;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 6;
}

.employee-card-v2 .v2-name {
    font-weight: 800;
    color: var(--primary-navy);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.2px;
    transition: color 0.3s;
}

.employee-card-v2:hover .v2-name {
    color: var(--primary-gold);
}

.employee-card-v2 .v2-position {
    color: #718096;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.2rem;
    min-height: 2.4em;
    line-height: 1.4;
}

.employee-card-v2 .v2-footer {
    border-top: 1px solid #edf2f7;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 6;
}

.employee-card-v2 .v2-nip {
    font-size: 0.65rem;
    color: #a0aec0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.employee-card-v2 .v2-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.employee-card-v2 .v2-link i {
    font-size: 0.6rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.employee-card-v2:hover .v2-link {
    color: var(--primary-navy);
}

.employee-card-v2:hover .v2-link i {
    transform: translateX(5px);
}

.employee-card-v2.is-featured {
    border-top: 4px solid var(--primary-gold);
}

/* 13. Official Social Hub - Sidebar Component */
.social-hub-premium {
    background: #ffffff;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(3, 8, 17, 0.05);
    border: 1px solid rgba(198, 166, 100, 0.08);
}

.social-card-v2 {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: #f8faff;
}

.social-card-v2:last-child {
    margin-bottom: 0;
}

.social-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.4s;
    opacity: 0.8;
}

.social-card-v2.fb::before {
    background: #1877F2;
}

.social-card-v2.ig::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card-v2.yt::before {
    background: #FF0000;
}

.social-card-v2.wa::before {
    background: #25D366;
}

.social-card-v2:hover {
    transform: translateX(10px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.social-card-v2:hover::before {
    width: 8px;
}

.social-v2-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.social-card-v2.fb .social-v2-icon {
    background: #1877F2;
}

.social-card-v2.ig .social-v2-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card-v2.yt .social-v2-icon {
    background: #FF0000;
}

.social-card-v2.wa .social-v2-icon {
    background: #25D366;
}

.social-v2-content {
    margin-left: 1.2rem;
    flex-grow: 1;
}

.social-v2-name {
    font-weight: 800;
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 0;
}

.social-v2-stats {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-v2-action {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.social-card-v2:hover .social-v2-action {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: rotate(45deg);
}

/* 14. Sidebar Layout Utilities */
.sidebar-sticky {
    position: sticky;
    top: 120px;
    z-index: 10;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.sidebar-card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-card-body {
    padding: 2rem;
}

/* 15. Cinematic Statistics Section */
.stats-cinematic-wrapper {
    background: var(--primary-navy);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.stats-cinematic-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern-batik.png');
    /* Ensure this path is correct or use a placeholder */
    background-size: 400px;
    opacity: 0.05;
    pointer-events: none;
}

.stats-cinematic-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(198, 166, 100, 0.15);
    border-radius: 35px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    position: relative;
    z-index: 2;
}

.stat-card-glass:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(198, 166, 100, 0.2);
}

.stat-glass-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), #e2c08d);
    color: var(--primary-navy);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 20px rgba(198, 166, 100, 0.3);
    transition: all 0.5s;
}

.stat-card-glass:hover .stat-glass-icon {
    transform: rotateY(180deg);
    box-shadow: 0 15px 30px rgba(198, 166, 100, 0.5);
}

/* Force white color for stats with ultra-high specificity */
.stats-cinematic-wrapper h2.stat-glass-number,
.stats-cinematic-wrapper .stat-glass-number,
h2.counter.stat-glass-number {
    color: #FFFFFF !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    -webkit-text-fill-color: #FFFFFF !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-glass-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
    display: block;
    line-height: 1;
}

.stat-glass-label {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.stat-glass-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-gold);
    transition: width 0.4s;
    border-radius: 4px 4px 0 0;
}

.stat-card-glass:hover .stat-glass-accent {
    width: 60px;
}

/* 16. Organizational Structure - Premium Layout */
.org-structure-premium-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .org-structure-premium-section {
        padding: 60px 0;
    }
}

.org-structure-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern-batik.png');
    background-size: 500px;
    opacity: 0.02;
    pointer-events: none;
}

.org-chart-premium-container {
    background: #ffffff;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 40px 100px rgba(3, 8, 17, 0.08);
    border: 1px solid rgba(198, 166, 100, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .org-chart-premium-container {
        border-radius: 25px;
        padding: 8px;
    }
}

.org-chart-viewport {
    background: #f8faff;
    border-radius: 32px;
    padding: 3rem;
    overflow: hidden;
    /* Remove horizontal scroll to keep image inside */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .org-chart-viewport {
        border-radius: 20px;
        padding: 1.5rem;
    }
}

.org-chart-img-fluid {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (min-width: 1200px) {
    .org-chart-img-fluid {
        min-width: 100%;
        /* On very large screens, it can fit */
    }
}

.org-chart-premium-container:hover .org-chart-img-fluid {
    transform: scale(1.03);
}

.org-interaction-hint {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-navy);
    border: 1px solid rgba(198, 166, 100, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    animation: pulse-hint 2s infinite;
}

@keyframes pulse-hint {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .org-interaction-hint {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.65rem;
    }
}

.org-meta-footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5f 100%);
    padding: 2rem 3rem;
    border-radius: 0 0 40px 40px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
    .org-meta-footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
        margin-top: -20px;
        border-radius: 0 0 25px 25px;
    }
}

.org-doc-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .org-doc-info {
        flex-direction: column;
        gap: 10px;
    }
}

.org-doc-icon {
    width: 55px;
    height: 55px;
    background: rgba(198, 166, 100, 0.2);
    color: var(--primary-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid rgba(198, 166, 100, 0.4);
}

.org-doc-text h5 {
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
    font-size: 1.1rem;
}

.org-doc-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.org-action-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 576px) {
    .org-action-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-org-action {
        width: 100%;
        justify-content: center;
    }
}

.btn-org-action {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-org-view {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-org-view:hover {
    background: white;
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.btn-org-download {
    background: var(--primary-gold);
    border: none;
    color: var(--primary-navy);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.2);
}

.btn-org-download:hover {
    background: #ffffff;
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201, 162, 39, 0.3);
}

/* 17. Legal Foundation - Premium Document Hub */
.legal-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-card-premium {
    background: #ffffff;
    border-radius: 25px;
    padding: 1.8rem 2.2rem;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(198, 166, 100, 0.12);
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 8, 17, 0.04);
}

.legal-card-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-gold), #e2c08d);
    transition: width 0.4s;
}

.legal-card-premium:hover {
    transform: translateX(15px);
    box-shadow: 0 25px 60px rgba(3, 8, 17, 0.08);
    background: #fdfaf3;
    border-color: rgba(198, 166, 100, 0.3);
}

.legal-card-premium:hover::before {
    width: 10px;
}

.doc-icon-premium {
    width: 65px;
    height: 65px;
    background: #f8faff;
    color: var(--primary-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.5s;
    border: 1px solid rgba(198, 166, 100, 0.1);
}

.legal-card-premium:hover .doc-icon-premium {
    background: var(--primary-gold);
    color: white;
    transform: rotateY(180deg);
}

.doc-info-premium {
    flex-grow: 1;
}

.doc-title-premium {
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-size: 1.15rem;
    letter-spacing: -0.3px;
}

.doc-desc-premium {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

.btn-download-premium {
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(3, 8, 17, 0.15);
}

.btn-download-premium:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: scale(1.1) rotate(10deg);
}

/* Responsive Tidiness - Tablets & Mobile */
@media (max-width: 991px) {
    .legal-card-premium {
        padding: 1.5rem 1.8rem;
        gap: 20px;
    }

    .doc-icon-premium {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .legal-card-premium {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        text-align: left;
    }

    .doc-info-premium {
        padding-right: 0;
    }

    .btn-download-premium {
        align-self: flex-end;
        margin-top: 10px;
        width: 100%;
        border-radius: 12px;
    }

    .btn-download-premium:hover {
        transform: none !important;
        /* Strictly disable rotation and scaling on mobile */
        background: var(--primary-gold);
        color: var(--primary-navy);
    }

    .legal-card-premium:hover {
        transform: translateY(-5px);
    }

    .doc-icon-premium {
        display: none;
        /* Hide icon on mobile/tablet per user request */
    }
}

@media (max-width: 576px) {
    .doc-title-premium {
        font-size: 1.05rem;
    }

    .doc-desc-premium {
        font-size: 0.85rem;
    }
}

/* =========================================================================
/* 12. DOWNLOADS & DOCUMENT HUB */
=========================================================================*/ .title-line {
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 10px;
}

.table-header-premium {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(11, 31, 58, 0.12);
    margin-top: -80px;
    position: relative;
    z-index: 20;
}

.filter-box-premium {
    background: #f8faff;
    border: 1px solid rgba(3, 8, 17, 0.05);
    border-radius: 20px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.filter-box-premium:hover {
    background: #fff;
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(198, 166, 100, 0.1);
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-gold);
    letter-spacing: 1.2px;
    margin-bottom: 4px;
    pointer-events: none;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 0.95rem;
    padding: 0;
    pointer-events: none;
}

.custom-options {
    position: absolute;
    top: calc(100% + 15px);
    left: -18px;
    right: -18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(3, 8, 17, 0.15);
    border: 1px solid rgba(198, 166, 100, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    overflow: hidden;
}

.custom-select-wrapper.active .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-wrapper.active .custom-select-trigger i {
    transform: none;
}

.option-item {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.option-item:hover {
    background: #f8faff;
    color: var(--primary-gold);
}

.option-item.selected {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.option-item i {
    width: 20px;
    text-align: center;
}

.filter-box-premium .form-select {
    padding: 0;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 0.95rem;
    background-image: none;
    cursor: pointer;
}

.search-box-premium {
    background: var(--primary-navy);
    border-radius: 20px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(3, 8, 17, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-box-premium:focus-within {
    transform: translateY(-2px);
    border-color: var(--primary-gold);
}

.search-box-premium .form-control {
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 0;
    margin-top: 2px;
}

.search-box-premium .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-status-dot-navy {
    width: 8px;
    height: 8px;
    background: var(--primary-navy);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(3, 8, 17, 0.3);
    animation: pulse-navy 2s infinite;
}

@keyframes pulse-navy {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Spotlight Section Styles */
.spotlight-bg-blob {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.spotlight-card-premium {
    background: #fff;
    border-radius: 28px;
    padding: 0;
    /* Remove padding to allow header background to touch edges */
    height: 100%;
    border: 1px solid rgba(3, 8, 17, 0.06);
    box-shadow: 0 15px 45px rgba(3, 8, 17, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.spotlight-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(3, 8, 17, 0.12);
    border-color: var(--primary-gold);
}

.spotlight-card-premium.highlight {
    border: 1px solid rgba(198, 166, 100, 0.3);
}

.card-glass-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: #fcfdfe;
    border-bottom: 1px solid rgba(3, 8, 17, 0.05);
}

.spotlight-card-premium.highlight .card-glass-header {
    background: linear-gradient(to right, #fcfdfe, #fff9f0);
}

.card-glass-header h5 {
    font-weight: 900;
    color: var(--primary-navy);
    font-size: 1.15rem;
    letter-spacing: -0.2px;
}

.card-icon {
    width: 42px;
    height: 42px;
    background: #fff;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(198, 166, 100, 0.15);
}

.spotlight-list {
    padding: 10px 30px 30px;
}

.spotlight-item-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(3, 8, 17, 0.03);
    transition: all 0.2s;
}

.spotlight-item-premium:last-child {
    border-bottom: none;
}

.spotlight-item-premium:hover {
    transform: translateX(5px);
}

.doc-icon-wrapper {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #f8faff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.spotlight-item-premium:hover .doc-icon-wrapper {
    background: #fff;
    box-shadow: 0 5px 15px rgba(3, 8, 17, 0.05);
}

.doc-meta {
    flex-grow: 1;
    overflow: hidden;
}

.doc-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-navy);
    display: block;
    line-height: 1.3;
    margin-bottom: 4px;
}

.doc-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-format {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doc-size-small,
.doc-date-small {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
}

.btn-mini-action {
    width: 28px;
    height: 28px;
    background: #f8faff;
    color: var(--primary-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.spotlight-item-premium:hover .btn-mini-action {
    opacity: 1;
    transform: translateX(0);
    background: var(--primary-gold);
    color: #fff;
}

/* Statistics Section Styles */
.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.stats-bg-blob {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
}

.stat-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card-premium:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(198, 166, 100, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stat-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(198, 166, 100, 0.2) 0%, rgba(198, 166, 100, 0.05) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 166, 100, 0.1);
}

.stat-card-premium:hover .stat-icon-box {
    transform: rotate(10deg);
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.stat-content h3 {
    letter-spacing: -1px;
}

/* Download Instruction & Guidelines Styles */
.instruction-steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item-premium {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #f8faff;
    border: 1px solid rgba(198, 166, 100, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(198, 166, 100, 0.05);
}

.support-cta-box {
    background: #fcfdfe;
    border: 1px solid rgba(3, 8, 17, 0.05);
    padding: 25px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.support-cta-box::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.support-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.format-vault-card {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(3, 8, 17, 0.08);
    border: 1px solid rgba(3, 8, 17, 0.04);
    height: 100%;
}

.vault-header {
    background: linear-gradient(-45deg, var(--primary-navy), #1a3a63, #0d2544, #1e4b82);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    padding: 22px 28px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.vault-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/buton-pattern-light.png');
    background-size: 200px;
    opacity: 0.05;
    pointer-events: none;
}

.vault-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
    opacity: 0.5;
}

.vault-header-ornament {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vault-icon-shield {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.format-vault-card:hover .vault-icon-shield {
    transform: rotate(15deg) scale(1.1);
    background: var(--primary-gold);
    color: var(--primary-navy);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.vault-body {
    padding: 24px;
}

.format-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.format-badge-item {
    text-align: center;
    padding: 15px 8px;
    background: #f8faff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.format-badge-item::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    color: #4ade80;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.format-badge-item:hover {
    background: #fff;
    border-color: var(--primary-gold);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(198, 166, 100, 0.15);
}

.format-badge-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.fmt-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: block;
}

.fmt-icon.pdf {
    color: #dc3545;
}

.fmt-icon.word {
    color: #0d6efd;
}

.fmt-icon.excel {
    color: #198754;
}

.fmt-icon.ppt {
    color: #ffc107;
}

.fmt-icon.zip {
    color: #6c757d;
}

.fmt-icon.more {
    color: var(--primary-gold);
}

.fmt-label {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--primary-navy);
    letter-spacing: 0.5px;
}

.vault-footer-accent {
    height: 8px;
    background: linear-gradient(to right, var(--primary-navy), var(--primary-gold));
}

@media (max-width: 768px) {
    .format-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

.filter-group .form-select {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.filter-group .form-select:focus {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(198, 166, 100, 0.1) !important;
}

.search-group .form-control {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.search-group .form-control:focus {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(198, 166, 100, 0.1) !important;
}

.downloads-bg {
    background: linear-gradient(rgba(3, 8, 17, 0.7), rgba(3, 8, 17, 0.7)), url('downloads_hero_cultural_1776940523159.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 450px;
}

.page-header-premium {
    padding: 80px 0 80px !important;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-navy);
}

.page-header-premium-ornament {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: url('assets/images/buton-pattern-light.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 35, 71, 0.1);
    border-color: var(--primary-gold);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(198, 166, 100, 0.1);
    color: var(--primary-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--primary-navy);
    color: var(--primary-gold);
}

/* Premium Document Table Layout */
.premium-table-container {
    overflow-x: auto;
    margin-top: 1rem;
}

.doc-type-col {
    width: 80px;
}

@media (max-width: 576px) {
    .doc-type-col {
        width: 60px;
    }
}

.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.premium-table thead th {
    border: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #adb5bd;
    padding: 0 1.5rem 0.5rem;
}

.premium-table tbody tr {
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 35, 71, 0.03);
    cursor: pointer;
}

.premium-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 35, 71, 0.08);
    background: #fdfdfd;
}

.premium-table td {
    padding: 1.2rem 1.5rem;
    vertical-align: middle;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
    .premium-table td {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .premium-table td {
        padding: 0.75rem 0.5rem;
    }

    .premium-table td:first-child {
        padding-left: 1rem;
        text-align: center;
    }

    .premium-table td:last-child {
        padding-right: 1rem;
    }

    .doc-list-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
        margin: 0 auto;
        /* Center icon */
    }

    .doc-title-main {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }

    .doc-subtitle-meta {
        font-size: 0.65rem !important;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .doc-subtitle-meta .mx-2 {
        display: none;
    }

    .btn-action-circle {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.8rem !important;
    }

    .table-header-premium {
        padding: 1.5rem !important;
        text-align: center;
        margin-top: -40px !important;
    }

    .table-header-premium .title-line {
        margin: 0 auto 10px;
    }

    .table-header-premium .row {
        text-align: center;
    }

    .filter-group,
    .search-group {
        width: 100%;
        max-width: 100% !important;
    }

    .filter-group label,
    .search-group label {
        text-align: center;
    }

    .pagination {
        gap: 2px;
    }

    .pagination .page-link {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.8rem !important;
        margin: 0 1px !important;
    }

    #documentInfo {
        text-align: center;
        width: 100%;
        margin-top: 0.5rem;
    }
}

.premium-table td:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 15px 0 0 15px;
}

.premium-table td:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 0 15px 15px 0;
}

.doc-list-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.premium-table tbody tr:hover .doc-list-icon {
    transform: scale(1.1);
}

.doc-title-main {
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2px;
    font-size: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.premium-table tbody tr:hover .doc-title-main {
    color: var(--primary-gold);
}

.doc-subtitle-meta {
    font-size: 0.75rem;
    color: #888;
    display: block;
}

.badge-premium-sm {
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-cat-regulations {
    background: rgba(198, 166, 100, 0.1);
    color: var(--primary-gold);
}

.badge-cat-reports {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.badge-cat-strategic {
    background: rgba(102, 16, 242, 0.1);
    color: #6610f2;
}

.badge-cat-public {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.btn-action-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: var(--primary-navy);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.btn-action-circle:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: scale(1.1);
    border-color: var(--primary-gold);
}

.btn-action-circle.dl-btn:hover {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--primary-navy);
}

.bg-pdf {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.bg-doc {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.bg-xls {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.bg-ppt {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.bg-zip {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.doc-meta {
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.doc-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.modern-sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-dl-item {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-dl-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-dl-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-preview-header {
    background: var(--primary-navy);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.instruction-card {
    border-left: 5px solid var(--primary-gold);
    background: #fff;
    padding: 1.5rem;
    border-radius: 0 15px 15px 0;
}

/* Pagination Premium */
.pagination-premium .page-item {
    margin: 0 5px;
}

.pagination-premium .page-link {
    border: none;
    background: white;
    color: var(--primary-navy);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pagination-premium .page-item.active .page-link {
    background: var(--primary-navy);
    color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.2);
    transform: translateY(-2px);
}

.pagination-premium .page-link:hover:not(.active) {
    background: #f8f9fa;
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.bg-navy-soft {
    background-color: rgba(11, 31, 58, 0.08);
}

/* Premium Section Header for Events */
.section-header-premium {
    position: relative;
}

.badge-premium-accent {
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.header-line-gold {
    height: 1px;
    background: linear-gradient(to right, var(--primary-gold), transparent);
    opacity: 0.4;
}

.event-stats-pill {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.04);
    border: 1px solid rgba(11, 31, 58, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.event-stats-pill .count {
    background: var(--primary-navy);
    color: var(--primary-gold);
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.event-stats-pill .label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.display-5.fw-black {
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .event-stats-pill {
        width: 100%;
        justify-content: center;
    }
}

/* --- Premium Event Statistics --- */
.event-stat-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3.5rem 2rem;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.event-stat-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-stat-card-premium:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.event-stat-card-premium:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-gold);
    font-size: 2.2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.event-stat-card-premium:hover .stat-icon-wrapper {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: scale(1.1) rotate(10deg);
}

.stat-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-gold {
    height: 100%;
    background: var(--primary-gold);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.5);
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.header-line-gold.w-50px {
    width: 50px;
    height: 2px;
    background: var(--primary-gold);
}

.max-w-700 {
    max-width: 700px;
}

.bg-navy-dark {
    background-color: var(--dark-navy) !important;
}

/* ==========================================================================
   LOGIN PAGE STYLES
   ========================================================================== */

body.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&q=80&w=1920') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    padding: 40px 20px !important;
    /* Added padding for small screens */
    margin: 0;
}

body.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.95) 0%, rgba(6, 17, 33, 0.7) 100%);
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.login-logo h2 {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.login-logo p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.login-page .form-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.login-page .input-group-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-gold);
    border-radius: 12px 0 0 12px !important;
}

.login-page .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 0 12px 12px 0 !important;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.login-page .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    box-shadow: none;
    color: white;
}

.login-page .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.forgot-password {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: white;
}

.btn-login {
    background: var(--primary-gold);
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    color: var(--dark-navy);
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-login:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.3);
}

.back-to-site {
    text-align: center;
    margin-top: 30px;
}

.back-to-site a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-to-site a:hover {
    color: var(--primary-gold);
}

.login-footer {
    margin-top: 40px;
    padding-bottom: 50px;
    /* Fixed: Added padding to prevent sticking to bottom */
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Float animation for background shapes */
.shape {
    position: absolute;
    z-index: 1;
    filter: blur(80px);
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(201, 162, 39, 0.1);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(11, 31, 58, 0.5);
    bottom: -50px;
    left: -50px;
}

/* Alert Styles */
.alert-premium {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    animation: alertFadeIn 0.4s ease-out;
}

.alert-premium-danger {
    background: rgba(220, 53, 69, 0.15);
    color: #ff8d97;
    border-color: rgba(220, 53, 69, 0.3);
}

.alert-premium-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffdb7d;
    border-color: rgba(255, 193, 7, 0.3);
}

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

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

/* ==========================================================================
   HATCHUU-INSPIRED HERO STYLES
   ========================================================================== */

.text-shadow-premium {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 0, 0, 0.3);
}

.btn-premium-primary {
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
}

.btn-premium-primary:hover {
    background: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(198, 166, 100, 0.3);
    color: var(--primary-navy) !important;
}

.btn-premium-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-5px);
    color: #fff;
}

/* Hero Glass Card */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 35px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 166, 100, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: rotate-glow 20s linear infinite;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.icon-box-gold {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(198, 166, 100, 0.3);
}

.spotlight-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(198, 166, 100, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 166, 100, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item .label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.stat-item .value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.stat-progress-mini {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-progress-mini::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-gold);
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.stat-item:hover .stat-progress-mini::after {
    width: 100%;
}

.text-gold-gradient {
    background: linear-gradient(135deg, #c6a664 0%, #fff 50%, #c6a664 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.title-accent-line {
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold));
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
}

.title-accent-line:last-child {
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.fw-black {
    font-weight: 900 !important;
}

.tracking-tighter {
    letter-spacing: -0.02em;
}

/* Ticker Bar */
.hero-ticker-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 8, 17, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    z-index: 3;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 50px;
    white-space: nowrap;
    animation: ticker-slide 60s linear infinite;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-mini {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 900;
}

.ticker-divider {
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .hero-slider .display-1 {
        font-size: 3.5rem !important;
    }

    .hero-ticker-bar {
        display: none;
    }
}

/* =========================================================================
   TEXT TRUNCATION UTILITIES
   ========================================================================= */

.truncate-1-lines {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-2-lines {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-3-lines {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-4-lines {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-5-lines {
    display: -webkit-box !important;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-1-lines,
.truncate-2-lines,
.truncate-3-lines,
.truncate-4-lines,
.truncate-5-lines {
    word-break: break-word;
    /* Tambahan penting */
    overflow-wrap: break-word;
    /* Alias-nya */
    white-space: normal;
    /* Pastikan wrap diizinkan */
}

/* =========================================================================
   CULTURAL OBJECT SHOW PAGE - CUSTOM PREMIUM STYLES
   ========================================================================= */
.bg-gradient-dark {
    background: linear-gradient(to top, rgba(0, 31, 63, 0.9) 0%, rgba(0, 31, 63, 0) 100%);
}

.fw-black {
    font-weight: 900;
}

.hover-lift:hover {
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Premium Share Hub Glassmorphism */
.share-link-premium {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.share-link-premium:hover {
    color: white !important;
    transform: translateY(-10px) scale(1.1);
}

.share-link-premium.premium-fb:hover {
    background: #1877F2 !important;
    border-color: #1877F2 !important;
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.5);
    rotate: 8deg;
}

.share-link-premium.premium-wa:hover {
    background: #25D366 !important;
    border-color: #25D366 !important;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    rotate: -8deg;
}

.share-link-premium.premium-x:hover {
    background: #000000 !important;
    border-color: #333333 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    rotate: 8deg;
}

.share-link-premium.premium-tg:hover {
    background: #229ED9 !important;
    border-color: #229ED9 !important;
    box-shadow: 0 15px 35px rgba(34, 158, 217, 0.5);
    rotate: -8deg;
}

.share-link-premium.premium-copy {
    color: #c5a059 !important;
    border-color: rgba(197, 160, 89, 0.3) !important;
}

.share-link-premium.premium-copy:hover {
    background: #c5a059 !important;
    border-color: #c5a059 !important;
    color: #001f3f !important;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.5);
    transform: translateY(-10px) scale(1.2);
    rotate: 0deg;
}

/* Table Premium Styles */
.technical-data-card .table-responsive {
    border-radius: 15px;
}

.technical-data-premium table th {
    font-weight: 700;
    border-right: 1px solid #eee;
}

.table-divider th {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 1px;
}


/* =========================================================================
   MOBILE OPTIMIZATION (Tweak Typography & Spacing)
   ========================================================================= */
@media (max-width: 767.98px) {

    /* Scale down large typography to prevent overflow and excessive scroll */
    .display-1 {
        font-size: 2.75rem !important;
    }

    .display-2 {
        font-size: 2.5rem !important;
    }

    .display-3 {
        font-size: 2.25rem !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.75rem !important;
    }

    .display-6 {
        font-size: 1.5rem !important;
    }

    h1,
    .h1 {
        font-size: 1.8rem !important;
    }

    h2,
    .h2 {
        font-size: 1.6rem !important;
    }

    h3,
    .h3 {
        font-size: 1.4rem !important;
    }

    h4,
    .h4 {
        font-size: 1.25rem !important;
    }

    /* Bootstrap Font Size Utilities Overrides */
    .fs-1 {
        font-size: 2rem !important;
    }

    .fs-2 {
        font-size: 1.75rem !important;
    }

    .fs-3 {
        font-size: 1.5rem !important;
    }

    .fs-4 {
        font-size: 1.25rem !important;
    }

    .fs-5 {
        font-size: 1.1rem !important;
    }

    .fs-6 {
        font-size: 1rem !important;
    }

    /* Minimal baseline as requested */

    .lead {
        font-size: 1.1rem !important;
    }

    /* Adjust Global Section Spacing for Mobile (Tighter Layout) */
    .section-sp {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .section-sp-sm {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .section-sp-lg {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    /* Page Banner (Header Background) scaling */
    .page-banner {
        padding: 9rem 0 4rem !important;
        margin-bottom: 2rem !important;
    }

    .page-banner h1 {
        font-size: 2.2rem !important;
    }

    /* Hero Slider & Landing Sections */
    .hero-slider {
        height: auto !important;
        min-height: 500px !important;
        padding-top: 140px !important;
        padding-bottom: 80px !important;
    }

    .hero-slider h1 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }

    /* Standardize Container Padding for tight mobile screens */
    .container,
    .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Cards spacing adjustments */
    .card-body {
        padding: 1.5rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 2.5rem !important;
        padding-bottom: 1rem !important;
    }

    /* Grid Spacing Tweaks */
    .g-5,
    .gy-5,
    .gx-5 {
        --bs-gutter-y: 2rem !important;
        --bs-gutter-x: 1.5rem !important;
    }

    /* Floating Stats Scaling */
    .stat-item .value {
        font-size: 1.5rem !important;
    }

    .stat-item .label {
        font-size: 0.6rem !important;
    }

    /* Badge & Button Scaling */
    .badge-premium-accent {
        font-size: 0.75rem !important;
        padding: 8px 16px !important;
    }

    .btn-premium-primary,
    .btn-premium-outline {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }

    /* Fix for sticky header offset on mobile */
    body {
        padding-top: 85px !important;
    }
}

/* =========================================================================
   ADDITIONAL MOBILE REFINEMENTS (Batch 2)
   ========================================================================= */
@media (max-width: 767.98px) {

    /* Navbar Brand Refinement */
    .brand-text .fs-5 {
        font-size: 1.05rem !important;
    }

    .brand-text span[style*="font-size: 0.75rem"] {
        font-size: 0.65rem !important;
        letter-spacing: 1px !important;
    }

    .navbar-brand .brand-icon img {
        height: 35px !important;
    }

    /* Meta Info Containers (Detail Pages) */
    .meta-glass-container {
        gap: 15px !important;
        margin-top: 1.5rem !important;
        justify-content: center;
        width: 100%;
    }

    .meta-item-premium {
        font-size: 0.8rem !important;
    }

    /* Heritage/Culture Show Page Widgets */
    .culture-status-widget {
        padding: 1rem !important;
        margin-bottom: 0.5rem;
    }

    .widget-icon-box {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    .widget-icon-box i {
        font-size: 1.1rem !important;
    }

    /* Technical Registry Card Refinements */
    .compact-grid-data .data-row {
        flex-direction: column;
        padding: 10px 0 !important;
    }

    .data-row .lbl {
        width: 100% !important;
        margin-bottom: 3px;
        font-size: 0.55rem !important;
    }

    .data-row .vlu {
        font-size: 0.85rem !important;
        padding-left: 0 !important;
    }

    .strip-item {
        padding: 10px !important;
        text-align: center;
    }

    .strip-item label {
        font-size: 0.5rem !important;
    }

    .strip-item .val {
        font-size: 0.75rem !important;
    }

    .compact-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .compact-action-btn {
        width: 100%;
    }

    /* Image Heights for Mobile */
    .main-featured-image-flush img {
        max-height: 300px !important;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
    }

    .title-line {
        display: none;
        /* Hide decorative lines on small screens if they mess with centering */
    }

    /* AOS Overrides (Optional: Reduce movement for better mobile performance) */
    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

/* Fix for small phones (iPhone SE etc) */
@media (max-width: 375px) {
    .display-1 {
        font-size: 2.25rem !important;
    }

    .display-2 {
        font-size: 2rem !important;
    }

    .display-3 {
        font-size: 1.85rem !important;
    }

    .brand-text .fs-5 {
        font-size: 0.95rem !important;
    }

    .btn-premium-primary,
    .btn-premium-outline {
        padding: 10px 20px !important;
        font-size: 0.8rem !important;
    }
}

/* 16. COMPREHENSIVE MOBILE OPTIMIZATIONS */
@media (max-width: 767.98px) {

    /* 1. Global Typography Scaling (Reduced significantly from desktop) */
    .display-1 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.02em !important;
    }

    .display-2 {
        font-size: 2.25rem !important;
        line-height: 1.1 !important;
    }

    .display-3 {
        font-size: 2rem !important;
        line-height: 1.15 !important;
    }

    .display-4 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }

    .display-5 {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
    }

    .display-6 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    /* Standard Headings */
    h1,
    .h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }

    h2,
    .h2 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    h3,
    .h3 {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
    }

    h4,
    .h4 {
        font-size: 1.15rem !important;
        line-height: 1.2 !important;
    }

    h5,
    .h5 {
        font-size: 1.05rem !important;
        line-height: 1.3 !important;
    }

    h6,
    .h6 {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }

    /* Text & Utilities */
    .lead {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .fs-1 {
        font-size: 1.75rem !important;
    }

    .fs-2 {
        font-size: 1.5rem !important;
    }

    .fs-3 {
        font-size: 1.25rem !important;
    }

    .fs-4 {
        font-size: 1.1rem !important;
    }

    .fs-5 {
        font-size: 1rem !important;
    }

    .fs-6 {
        font-size: 0.85rem !important;
    }

    /* Minimal functional size */

    .small {
        font-size: 0.8rem !important;
    }

    .text-muted {
        font-size: 0.85rem !important;
    }

    /* 2. Global Section Spacing (Tighter for mobile flow) */
    .section-sp {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .section-sp-sm {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .section-sp-lg {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    /* 3. Container & Grid Standard (Consistent edge spacing) */
    .container,
    .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .g-5,
    .gy-5,
    .gx-5 {
        --bs-gutter-y: 1.75rem !important;
        --bs-gutter-x: 1.25rem !important;
    }

    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .row>* {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* 4. Specific Component Refinements */
    /* Hero Slider Adjustments */
    .hero-slider {
        padding-top: 85px !important;
        /* Match mobile header height */
        padding-bottom: 60px !important;
        min-height: auto !important;
    }

    .hero-slider video,
    .hero-slider .position-absolute.w-100.h-100 {
        top: 0;
        left: 0;
    }

    .hero-slider h1 {
        margin-bottom: 1rem !important;
    }

    .hero-slider p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-slider .btn {
        width: auto !important;
        margin-bottom: 0;
    }

    .hero-slider .d-flex.gap-4 {
        gap: 15px !important;
        flex-direction: row !important;
    }

    /* Page Banner / Header Scaling */
    .page-banner {
        padding: 7rem 0 3rem !important;
        margin-bottom: 2rem !important;
    }

    .page-banner h1 {
        font-size: 1.75rem !important;
    }

    /* Section Title */
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 2rem !important;
        text-align: center;
    }

    .section-title::after {
        left: 50% !important;
        transform: translateX(-50%);
    }

    /* Card Styling */
    .card-body {
        padding: 1.25rem !important;
    }

    .card-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* Sambutan Kadin Section */
    .section-sp-lg img {
        height: 350px !important;
    }

    .ps-lg-5 {
        padding-left: 15px !important;
    }

    .border-left {
        padding-left: 15px !important;
        font-size: 0.95rem !important;
    }

    .section-sp-lg p.fs-5 {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
    }

    /* Stats Box Scaling */
    .stat-box h2.display-4 {
        font-size: 2.25rem !important;
    }

    .stat-box .small {
        font-size: 0.65rem !important;
    }

    /* Program Card Scaling */
    .program-card-content h4 {
        font-size: 1rem !important;
    }

    .program-card-desc {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    /* News Card Refinement */
    .news-card-v2 h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .news-card-v2 p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    /* Footer Tweak */
    .footer-top {
        padding-top: 60px !important;
        padding-bottom: 30px !important;
    }

    .footer-brand img {
        height: 40px !important;
    }

    /* Buttons Scaling */
    .btn-lg,
    .btn-premium-primary,
    .btn-premium-outline {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }

    /* Leader Featured Section Refinement */
    .leader-featured-section {
        padding: 2.5rem 1.5rem !important;
        border-radius: 24px !important;
        margin-bottom: 3rem !important;
        text-align: center;
    }

    .leader-img-box {
        margin-bottom: 2rem;
        border-radius: 20px !important;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .leader-content {
        padding-left: 0 !important;
    }

    .leader-content h2.display-5 {
        font-size: 1.75rem !important;
        margin-top: 1rem;
    }

    .leader-content .fs-5 {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .leader-content .btn-lg {
        width: 100%;
        font-size: 1rem !important;
        padding: 12px 20px !important;
    }

    .leader-content .row.g-4.mb-5 {
        text-align: left;
        margin-bottom: 2rem !important;
    }

    .leader-content .d-flex.align-items-center {
        background: rgba(255, 255, 255, 0.05);
        padding: 15px;
        border-radius: 15px;
    }

    /* Contact Page Refinements */
    .contact-info-grid {
        margin-top: -40px !important;
    }

    .glass-info-card {
        padding: 1.5rem !important;
        border-radius: 15px !important;
    }

    .info-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .contact-form-premium {
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
    }

    .sidebar-contact-card {
        padding: 1.5rem !important;
        margin-top: 2rem;
    }

    .sidebar-contact-card h3 {
        font-size: 1.5rem !important;
    }

    /* Employee Profile Detail Refinements */
    .profile-content-card {
        border-radius: 24px !important;
        margin-bottom: 2rem !important;
    }

    .profile-section-title {
        padding: 1.2rem 1.5rem !important;
        font-size: 1.1rem !important;
    }

    .profile-section-title i {
        font-size: 1.2rem !important;
        margin-right: 0.8rem !important;
    }

    .profile-section-body {
        padding: 1.5rem !important;
    }

    .bio-quote {
        font-size: 1.05rem !important;
        padding-left: 1.2rem !important;
        border-left-width: 4px !important;
        line-height: 1.6 !important;
    }

    .timeline-premium {
        padding-left: 30px !important;
    }

    .timeline-dot {
        left: -38px !important;
        width: 14px !important;
        height: 14px !important;
    }

    /* Global Breadcrumb Scaling */
    .breadcrumb-premium {
        padding: 5px 15px !important;
        margin-bottom: 1.5rem !important;
    }

    .breadcrumb-premium .breadcrumb-item {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
    }

    .breadcrumb-premium .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 8px !important;
    }

    /* Downloads Page Refinements */
    .table-header-premium {
        margin-top: -30px !important;
        padding: 1.25rem !important;
        border-radius: 15px !important;
    }

    .filter-box-premium {
        padding: 10px 15px !important;
        border-radius: 12px !important;
    }

    .filter-label {
        font-size: 0.6rem !important;
        letter-spacing: 0.5px !important;
    }

    .custom-select-trigger {
        font-size: 0.85rem !important;
    }

    .premium-table thead th {
        padding: 0 0.75rem 0.5rem !important;
        font-size: 0.65rem !important;
    }

    .premium-table td {
        padding: 0.75rem 0.5rem !important;
    }

    .btn-download-premium {
        width: 36px !important;
        height: 36px !important;
        line-height: 36px !important;
        padding: 0 !important;
        font-size: 0.85rem !important;
    }

    .premium-table {
        border-spacing: 0 8px !important;
    }

    /* Fix rounded corners on mobile since first column is hidden */
    .premium-table td:nth-child(2) {
        border-left: 1px solid rgba(0, 0, 0, 0.02) !important;
        border-radius: 12px 0 0 12px !important;
    }

    .premium-table td:last-child {
        border-radius: 0 12px 12px 0 !important;
    }

    /* Spotlight Section Refinements */
    .spotlight-card-premium {
        border-radius: 20px !important;
    }

    .card-glass-header {
        padding: 15px 20px !important;
        gap: 10px !important;
    }

    .card-glass-header h5 {
        font-size: 1rem !important;
    }

    .card-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }

    .spotlight-list {
        padding: 5px 20px 20px !important;
    }

    .spotlight-item-premium {
        padding: 12px 0 !important;
    }

    .doc-title {
        font-size: 0.85rem !important;
    }

    .doc-info {
        gap: 6px !important;
    }
}

/* Extra tight for very small screens */
@media (max-width: 380px) {
    .display-1 {
        font-size: 2.2rem !important;
    }

    .display-2 {
        font-size: 2rem !important;
    }

    .display-3 {
        font-size: 1.75rem !important;
    }

    h1,
    .h1 {
        font-size: 1.6rem !important;
    }

    h2,
    .h2 {
        font-size: 1.4rem !important;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* =========================================================================
   CUSTOM SIDEBAR & NAVBAR DROPDOWN STYLES
   ========================================================================= */
@media (min-width: 1200px) {
    .navbar .dropdown-menu {
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.98) !important;
        padding: 10px !important;
        border-radius: 12px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05) !important;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .navbar .nav-item.dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar .dropdown-item {
        color: #2c3e50 !important;
        border-radius: 8px !important;
        padding: 10px 15px !important;
        margin-bottom: 2px;
        font-weight: 500 !important;
        border-bottom: none !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        transition: all 0.2s ease;
        position: relative;
    }

    .navbar .dropdown-item:hover::before,
    .navbar .dropdown-item.active::before {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 12px;
        color: #b38e2d;
        font-size: 0.75rem;
        display: block !important;
    }

    .navbar .dropdown-item span {
        flex: 1;
        margin-right: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item.active {
        background: rgba(201, 162, 39, 0.08) !important;
        color: #b38e2d !important;
        padding-left: 1.5rem !important;
    }

    .navbar .dropdown-submenu {
        display: block !important;
        position: absolute !important;
        left: 100% !important;
        top: -8px !important;
        /* Slight offset for better alignment with shadow */
        opacity: 0;
        visibility: hidden;
        transform: translateX(15px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-width: 220px !important;
        margin-left: 0 !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.98) !important;
        padding: 8px !important;
        border-radius: 12px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    }

    .dropdown-item-submenu:hover>.dropdown-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .dropdown-item-submenu i.submenu-arrow {
        font-size: 0.7rem;
        opacity: 0.6;
        transition: transform 0.3s;
    }

    .navbar .dropdown-item-submenu:hover i.submenu-arrow {
        transform: translateX(3px);
        opacity: 1;
        color: #b38e2d;
    }
}

@media (max-width: 1199px) {
    .offcanvas-body .nav-link {
        font-size: 1rem;
        padding: 15px 20px !important;
        font-weight: 600;
    }

    .offcanvas-body .dropdown-menu {
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 0 !important;
        margin-left: 15px !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .offcanvas-body .dropdown-item {
        padding: 12px 20px !important;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .offcanvas-body .dropdown-submenu {
        background: rgba(0, 0, 0, 0.2) !important;
        margin-left: 15px !important;
        border-left: 1px solid rgba(201, 162, 39, 0.2) !important;
        display: none;
    }

    .offcanvas-body .dropdown-submenu.show {
        display: block;
    }

    .offcanvas-body .dropdown-item-submenu>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Fix for mobile-to-desktop transition white layout glitch */
@media (min-width: 1200px) {
    .navbar-collapse {
        background: transparent !important;
        display: flex !important;
    }

    .offcanvas-backdrop {
        display: none !important;
    }

    .offcanvas {
        visibility: hidden !important;
        transform: none !important;
    }
}

/* Mobile 3rd Level Menu Styling */
@media (max-width: 1199px) {
    .offcanvas-body .dropdown-submenu {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.1) !important;
        padding-left: 15px !important;
    }

    .offcanvas-body .dropdown-submenu .dropdown-item {
        padding-left: 2.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* =========================================================================
   PREMIUM MOBILE OFFCANVAS STYLES
   ========================================================================= */
.offcanvas-premium {
    background: linear-gradient(165deg, var(--primary-navy) 0%, var(--dark-navy) 100%) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 340px !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
}

.offcanvas-premium .offcanvas-header {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 1.5rem 1.5rem !important;
    position: relative;
    overflow: hidden;
}

.offcanvas-premium .offcanvas-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.offcanvas-premium .offcanvas-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white) !important;
    display: flex;
    align-items: center;
}

.offcanvas-premium .offcanvas-title img {
    filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.4));
}

.offcanvas-premium .btn-close-white {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.offcanvas-premium .btn-close-white:hover {
    background-color: var(--primary-gold);
    opacity: 1;
    transform: rotate(90deg);
}

.offcanvas-premium .offcanvas-body {
    padding: 2rem 1.5rem !important;
    background: transparent !important;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) transparent;
}

/* Nav Menu Premium */
.menu-premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-premium-item {
    margin-bottom: 0.5rem;
    perspective: 1000px;
}

.menu-premium-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.menu-premium-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.menu-premium-link:hover::before {
    left: 100%;
}

.menu-premium-link:hover {
    background: rgba(201, 162, 39, 0.12);
    color: var(--primary-gold) !important;
    border-color: rgba(201, 162, 39, 0.25);
    padding-left: 22px;
    transform: translateX(5px);
}

.menu-premium-link.active {
    background: rgba(201, 162, 39, 0.15);
    color: var(--primary-gold) !important;
    border-color: rgba(201, 162, 39, 0.3);
}

.menu-premium-link i.main-icon {
    width: 32px;
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.menu-premium-link:hover i.main-icon {
    transform: scale(1.2) rotate(-10deg);
    color: var(--primary-gold);
}

.menu-premium-link.active i.main-icon {
    color: var(--primary-gold);
}

.menu-premium-link .link-text {
    flex: 1;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 5px;
}

.menu-premium-link i.arrow-icon {
    font-size: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.5;
}

.menu-premium-link[aria-expanded="true"] {
    background: rgba(201, 162, 39, 0.15);
    border-color: rgba(201, 162, 39, 0.3);
}

.menu-premium-link[aria-expanded="true"] i.arrow-icon {
    transform: rotate(180deg);
    color: var(--primary-gold);
    opacity: 1;
}

/* Submenu Premium */
.submenu-premium {
    padding-left: 0.5rem;
    margin-top: 0.25rem;
    border-left: 1px solid rgba(201, 162, 39, 0.2);
    margin-left: 24px;
    overflow: hidden;
}

.submenu-premium-item {
    margin-bottom: 2px;
    animation: slideInRight 0.3s ease forwards;
    opacity: 0;
}

@keyframes slideInRight {
    from {
        transform: translateX(20px);
        opacity: 0;
    }

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

.submenu-premium-link {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
}

.submenu-premium-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.submenu-premium-link:hover {
    color: var(--primary-gold) !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 25px;
}

.submenu-premium-link:hover::after {
    width: 15px;
}

.submenu-premium-link.active {
    color: var(--primary-gold) !important;
    background: rgba(201, 162, 39, 0.1);
    font-weight: 700;
}

/* Action Section Premium */
.offcanvas-actions-premium {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.search-box-premium {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box-premium input {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 10px 15px 10px 45px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.search-box-premium input:focus {
    background: rgba(0, 0, 0, 0.4) !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15) !important;
}

.search-box-premium i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    opacity: 0.7;
    font-size: 1.1rem;
}

.btn-login-premium {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%) !important;
    color: var(--primary-navy) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.25) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease !important;
}

.btn-login-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(201, 162, 39, 0.4) !important;
    filter: brightness(1.1);
}

/* Social & Info */
.offcanvas-footer-premium {
    margin-top: 3rem;
    text-align: center;
}

.social-links-premium {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-link-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white !important;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
}

.social-link-item:hover {
    background: var(--primary-gold);
    color: var(--primary-navy) !important;
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--primary-gold);
}

.tagline-premium {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Mobile Toggler Premium */
.toggler-premium {
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.toggler-premium:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.toggler-premium i {
    font-size: 1.4rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.toggler-premium:hover i {
    color: var(--primary-gold);
}