/* ============================================================
   THEME CUSTOM CSS - BPK PU Wilayah VI Surabaya
   Consolidated & Modern UI/UX Styles
   Color Palette: #132F53 (PU Blue), #FBB717 (PU Yellow)
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
    --pu-blue: #132F53;
    --pu-blue-dark: #0F2140;
    --pu-blue-light: #1a3d6d;
    --pu-yellow: #FBB717;
    --pu-yellow-light: #fde047;
    --pu-yellow-hover: #e5a815;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px -15px rgba(0, 0, 0, 0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Global Typography Override --- */
body {
    font-family: var(--font-main);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
}

/* ============================================================
   0. SLIDER AREA FIXES
   ============================================================ */
.slider-area-three {
    position: relative;
    overflow: hidden;
}

.slider-area-three .single-slider {
    min-height: 65vh !important;
    max-height: 650px;
}

/* Hide dots - keep arrows only */
.slider-area-three .slider-nav,
.slider-area-three .slick-dots {
    display: none !important;
}

/* Modern Pill-Bar Arrow Navigation */
.slider-area-three .slick-arrow {
    z-index: 10;
    position: absolute !important;
    width: 24px;
    height: 70px;
    background: rgba(19, 47, 83, 0.35) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer;
    padding: 0;
}

.slider-area-three:hover .slick-arrow {
    opacity: 1;
}

.slider-area-three .slick-arrow:hover {
    background: var(--pu-yellow) !important;
    border-color: var(--pu-yellow);
    width: 28px;
    box-shadow: 0 4px 20px rgba(251, 183, 23, 0.35);
}

.slider-area-three .slick-arrow i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    line-height: 1;
}

.slider-area-three .slick-arrow:hover i {
    color: var(--pu-blue);
}

/* Override slick default ::before content */
.slider-area-three .slick-arrow::before {
    display: none !important;
}

.slider-area-three .slick-prev {
    left: 20px !important;
    right: auto !important;
}

.slider-area-three .slick-next {
    right: 20px !important;
    left: auto !important;
}

/* Remove any extra padding/margin from slider container */
.slider-area-three .slick-list {
    margin: 0;
    padding: 0 !important;
}

/* Override theme's enormous default title size */
.slider-content-three .title,
.slider-content-three .title.slider-hero-title {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem) !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    max-width: 550px;
}

.slider-content-three .slider-hero-badge {
    font-size: 11px !important;
    padding: 5px 16px !important;
}

.slider-content-three .slider-hero-btn {
    padding: 12px 28px !important;
    font-size: 13px !important;
}

/* ============================================================
   1. HEADER & NAVIGATION
   ============================================================ */

/* Hide FH5 banner */
.fh5---banner---container {
    display: none;
}

/* Top Slim Bar */
.header-top-slim {
    background: var(--pu-blue);
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--pu-yellow);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 8px var(--pu-yellow);
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.2; }
}

.slim-text-white { color: #ffffff; }
.slim-text-bold { color: #ffffff; font-weight: 700; }
.slim-divider { margin: 0 12px; color: #ffffff; font-weight: bold; }

.slim-social {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slim-social a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slim-social a:hover {
    color: var(--pu-blue);
    background-color: var(--pu-yellow);
    border-color: var(--pu-yellow);
    transform: translateY(-2px);
}

/* Menu Area */
.menu-area {
    background: var(--bg-white) !important;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 999;
    transition: var(--transition);
}

/* Sticky Menu */
.sticky-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020 !important;
    background: var(--bg-white) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12) !important;
    animation: stickySlideDown 0.4s ease-in-out forwards;
}

@keyframes stickySlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Navigation Links */
.main-menu .navigation .nav-link,
.main-menu .navigation .sub-menu a {
    color: var(--pu-blue);
    transition: var(--transition);
    font-weight: 500;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation .sub-menu li:hover > a {
    color: var(--pu-yellow) !important;
}

.main-menu .navigation .current-menu-ancestor > a,
.main-menu .navigation .sub-menu .current-menu-item > a,
.main-menu .navigation > li.current-menu-item > a,
.main-menu .navigation > li.current-menu-ancestor > a,
.main-menu .navigation a.active {
    color: var(--pu-yellow) !important;
    font-weight: 600;
}

.sub-menu a::before {
    display: none !important;
}

/* Logo */
.menu-nav .logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-nav .logo a img {
    max-height: 50px !important;
    width: auto !important;
}

/* Search Button */
.header-action .header-search a {
    background-color: var(--pu-blue) !important;
    border: 2px solid var(--pu-yellow) !important;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.header-action .header-search a:hover {
    background-color: var(--pu-yellow) !important;
    border-color: var(--pu-blue) !important;
    color: var(--pu-blue) !important;
    transform: scale(1.08);
}

/* Hamburger Menu Icon */
.offcanvas-menu .menu-tigger span {
    background-color: var(--pu-yellow) !important;
}

/* Mobile Nav Toggler */
.mobile-nav-toggler {
    border: 2px solid var(--pu-blue) !important;
    border-radius: var(--radius-sm) !important;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    padding: 0;
    transition: var(--transition);
}

.mobile-nav-toggler:hover {
    background: var(--pu-blue);
}

.mobile-nav-toggler i {
    color: var(--pu-yellow) !important;
    line-height: inherit;
}

/* ============================================================
   2. MOBILE MENU
   ============================================================ */
.mobile-menu .menu-box {
    padding: 25px;
    background: var(--bg-white);
}

.mobile-menu .nav-logo {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .navigation {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .navigation li {
    display: block;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu .navigation li a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--pu-blue) !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mobile-menu .navigation li.current-menu-item > a,
.mobile-menu .navigation li.current-menu-ancestor > a,
.mobile-menu .navigation a.active {
    color: var(--pu-yellow) !important;
    font-weight: 700;
}

.mobile-menu .navigation li.menu-item-has-children > a {
    padding-right: 45px;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
    background: var(--pu-yellow) !important;
    color: var(--pu-blue) !important;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 6px;
    top: 10px;
}

.mobile-menu .navigation .sub-menu {
    padding-left: 20px;
    border-top: 1px solid #f0f0f0;
    background: var(--bg-light);
}

.mobile-menu .social-links {
    text-align: center;
    padding: 20px 0;
}

.mobile-menu .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    margin: 0 4px;
    color: var(--pu-blue) !important;
    transition: var(--transition);
}

.mobile-menu .social-links a:hover {
    background: var(--pu-yellow) !important;
    border-color: var(--pu-yellow) !important;
    color: var(--pu-blue) !important;
    transform: translateY(-2px);
}

.mobile-menu .header-info-wrap {
    margin-top: 15px;
}

.mobile-menu .header-info-item {
    background-color: var(--pu-blue) !important;
    border-radius: var(--radius-md);
    padding: 15px;
}

.mobile-menu .header-info-item .content a {
    font-size: 16px !important;
    font-weight: 700;
    color: white !important;
}

.mobile-menu .header-info-item .content span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px !important;
    text-transform: uppercase;
}

.mobile-menu .header-info-item .icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* ============================================================
   3. OFFCANVAS SIDEBAR (Extra Info Panel)
   ============================================================ */
.extra-info {
    background-color: white !important;
    padding: 40px 30px !important;
}

.extra-info h4 {
    color: var(--pu-blue) !important;
    font-weight: 600 !important;
    text-transform: none !important;
    font-size: 17px !important;
    margin-bottom: 10px !important;
}

.extra-info .logo-side h4 {
    font-size: 22px !important;
    font-weight: 700 !important;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px !important;
}

.extra-info .logo-side h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--pu-yellow), var(--pu-yellow-light));
    border-radius: 2px;
}

.extra-info .side-info p,
.extra-info .side-info a {
    color: var(--text-secondary) !important;
    margin-bottom: 5px;
    font-size: 14px;
}

.extra-info .social-icon-right a {
    color: var(--pu-blue) !important;
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    margin-right: 6px;
    transition: var(--transition);
}

.extra-info .social-icon-right a:hover {
    color: var(--bg-white) !important;
    background: var(--pu-yellow);
    border-color: var(--pu-yellow);
    transform: translateY(-2px);
}

.extra-info .close-icon button {
    color: var(--pu-blue) !important;
}

/* ============================================================
   4. BULLETIN / TICKER
   ============================================================ */
.modern-ticker-wrap {
    width: 100%;
    background: var(--pu-yellow);
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--pu-blue);
}

.modern-ticker {
    color: var(--pu-blue);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
}

.akronim-box {
    background: var(--bg-white);
    color: var(--pu-blue);
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 5px;
    display: inline-block;
    line-height: 1;
    margin: 0 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    font-size: 14px;
}

.modern-ticker-content {
    color: var(--pu-blue);
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

@media (max-width: 991px) {
    .modern-ticker-content { font-size: 12px; }
    .akronim-box { font-size: 12px; padding: 2px 4px; }
}

/* ============================================================
   5. BREADCRUMB AREA
   ============================================================ */
.breadcrumb-area {
    position: relative;
    overflow: hidden;
}

.breadcrumb-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 47, 83, 0.85), rgba(15, 33, 64, 0.75));
    z-index: 1;
}

.breadcrumb-area .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-content .title {
    font-weight: 800;
    letter-spacing: -0.3px;
}

.breadcrumb-item a,
.breadcrumb-item a i {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover,
.breadcrumb-item a:hover i {
    color: var(--pu-yellow) !important;
}

.breadcrumb-item.active {
    color: var(--pu-yellow);
    font-weight: bold;
}

/* ============================================================
   6. BLOG POST CARDS (Universal - used across category, tag, search, home)
   ============================================================ */
.blog-post-item-two {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.blog-post-item-two:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-post-item-two .blog-post-thumb {
    position: relative;
    overflow: hidden;
}

.blog-post-item-two .blog-post-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #e9ecef;
}

.blog-post-item-two:hover .blog-post-thumb img {
    transform: scale(1.06);
}

.blog-post-item-two .blog-post-thumb .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pu-blue);
    color: #ffffff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.blog-post-item-two:hover .blog-post-thumb .tag {
    background: var(--pu-yellow);
    color: var(--pu-blue);
}

.blog-post-item-two .blog-post-content {
    padding: 18px 22px;
}

.blog-post-item-two .blog-post-content .blog-meta {
    margin-bottom: 8px;
}

.blog-post-item-two .blog-post-content .blog-meta ul {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-post-item-two .blog-post-content .blog-meta ul li {
    font-size: 13px;
    color: var(--text-secondary);
}

.blog-post-item-two .blog-post-content .blog-meta ul li i {
    margin-right: 5px;
    color: var(--pu-yellow);
}

.blog-post-item-two .blog-post-content .blog-meta ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.blog-post-item-two .blog-post-content .blog-meta ul li a:hover {
    color: var(--pu-yellow);
}

.blog-post-item-two .blog-post-content .title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}

.blog-post-item-two .blog-post-content .title a {
    color: var(--text-primary);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-item-two .blog-post-content .title a:hover {
    color: var(--pu-yellow);
}

/* ============================================================
   7. SECTION TITLES
   ============================================================ */
.section-title .sub-title {
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title .title {
    font-weight: 800;
    letter-spacing: -0.3px;
}

/* ============================================================
   8. TESTIMONIAL SECTION
   ============================================================ */
.testimonial-item {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote-icon {
    margin-bottom: 15px;
}

.testimonial-quote-icon i {
    color: var(--pu-yellow);
    font-size: 28px;
    opacity: 0.6;
}

.testimonial-avatar {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.testimonial-avatar .avatar-thumb {
    margin-right: 15px;
}

.testimonial-avatar .avatar-thumb img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pu-yellow);
}

.testimonial-avatar .avatar-content .title {
    margin: 0;
    font-size: 1.05em;
    font-weight: 700;
    color: var(--pu-blue);
}

.testimonial-avatar .avatar-content span {
    font-size: 0.85em;
    color: var(--pu-yellow);
    font-weight: 600;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   9. GALLERY BENTO LAYOUT
   ============================================================ */
.bento-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 15px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.bento-item:nth-child(5n + 1) {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .bento-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    .bento-item:nth-child(5n + 1) { grid-column: span 2; }
}

@media (max-width: 575px) {
    .bento-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .bento-item:nth-child(5n + 1) { grid-column: span 1; }
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
}

.bento-item:hover img {
    transform: scale(1.08);
}

/* Bento Overlay */
.modern-card-hover-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(251, 183, 23, 0.98) 0%, rgba(251, 183, 23, 0.7) 40%, rgba(251, 183, 23, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.bento-item:hover .modern-card-hover-box {
    opacity: 1;
    transform: translateY(0);
}

.modern-card-hover-content {
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.bento-item:hover .modern-card-hover-content {
    transform: translateY(0);
}

.bento-album-title {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--pu-blue);
    opacity: 0.85;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.bento-photo-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pu-blue);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-item:nth-child(5n + 1) .bento-photo-title {
    font-size: 20px;
}

/* Bento Carousel Dots */
.bento-gallery-carousel .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none !important;
    padding: 0 !important;
    margin: 40px 0 0 0 !important;
    position: relative !important;
    bottom: 0 !important;
}

.bento-gallery-carousel .slick-dots li {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 6px;
    padding: 0;
    cursor: pointer;
}

.bento-gallery-carousel .slick-dots li::before {
    display: none !important;
}

.bento-gallery-carousel .slick-dots li button {
    font-size: 0 !important;
    line-height: 0 !important;
    display: block;
    width: 14px;
    height: 14px;
    padding: 0;
    cursor: pointer;
    color: transparent !important;
    border: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bento-gallery-carousel .slick-dots li.slick-active button {
    background: var(--pu-yellow) !important;
    transform: scale(1.3);
}

.bento-gallery-carousel .slick-dots li button::before,
.bento-gallery-carousel .slick-dots li button::after {
    display: none !important;
}

/* ============================================================
   10. PARTNER / BRAND LINKS
   ============================================================ */
.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(251, 183, 23, 0.3);
}

.partner-card img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
.footer {
    background: var(--pu-blue);
    color: #cbd5e1;
    padding: 60px 0 30px;
    font-size: 15px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pu-yellow), var(--pu-yellow-light));
}

.footer a {
    color: #e2e8f0;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--pu-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-title {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 3px solid var(--pu-yellow);
    display: inline-block;
    padding-bottom: 10px;
}

.footer-list,
.visitor-stats,
.download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li,
.visitor-stats li,
.download-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-list li i {
    color: var(--pu-yellow);
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.visitor-stats li {
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visitor-stats li:last-child {
    border-bottom: none;
}

.download-list li {
    gap: 12px;
}

.download-list li i {
    color: #ef4444;
    font-size: 16px;
}

.footer .social-links a {
    margin-right: 8px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--pu-yellow);
    border-color: var(--pu-yellow);
    color: var(--pu-blue) !important;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer { padding: 40px 0 25px; }
}

/* ============================================================
   12. SCROLL TO TOP
   ============================================================ */
.scroll-top {
    background-color: var(--pu-blue) !important;
    color: var(--pu-yellow) !important;
    border: 2px solid var(--pu-yellow);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(19, 47, 83, 0.3);
}

.scroll-top:hover {
    background-color: var(--pu-yellow) !important;
    color: var(--pu-blue) !important;
    transform: translateY(-3px);
}

/* ============================================================
   13. FAB FLOATING BUTTON (Saran & Pengaduan)
   ============================================================ */
.fab-float-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 1050;
    animation: fabBounceIn 0.6s ease-out;
}

@keyframes fabBounceIn {
    0% { transform: scale(0) translateY(50px); opacity: 0; }
    60% { transform: scale(1.1) translateY(-5px); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.fab-float-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--pu-blue), var(--pu-blue-dark));
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(19, 47, 83, 0.4);
    transition: var(--transition);
    border: 2px solid rgba(251, 183, 23, 0.3);
}

.fab-float-btn a:hover {
    background: linear-gradient(135deg, var(--pu-yellow), var(--pu-yellow-hover));
    color: var(--pu-blue) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(19, 47, 83, 0.5);
    border-color: var(--pu-yellow);
}

.fab-float-btn a i {
    font-size: 18px;
}

.fab-label {
    white-space: nowrap;
}

@media (max-width: 575px) {
    .fab-float-btn a {
        padding: 12px;
        border-radius: 50%;
    }
    .fab-label { display: none; }
}

/* ============================================================
   14. PAGINATION (Universal)
   ============================================================ */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination li {
    list-style: none;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--pu-blue);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-decoration: none;
}

.pagination li a:hover {
    background: var(--pu-blue);
    color: #ffffff;
    border-color: var(--pu-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination li.active a,
.pagination li.active span,
.pagination .page-item.active .page-link {
    background: var(--pu-yellow);
    color: var(--pu-blue);
    border-color: var(--pu-yellow);
    font-weight: 700;
}

/* ============================================================
   15. SIDEBAR WIDGETS
   ============================================================ */
.blog-sidebar .blog-widget {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.blog-sidebar .widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pu-blue);
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 22px;
}

.blog-sidebar .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--pu-yellow), var(--pu-yellow-light));
    border-radius: 2px;
}

.blog-sidebar .rc-post-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.blog-sidebar .rc-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-sidebar .rc-post-item:hover {
    transform: translateX(4px);
}

.blog-sidebar .rc-post-item .thumb {
    flex-shrink: 0;
}

.blog-sidebar .rc-post-item .thumb img {
    width: 80px;
    height: 65px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.blog-sidebar .rc-post-item .content .title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 5px;
}

.blog-sidebar .rc-post-item .content .title a {
    color: var(--text-primary);
    transition: var(--transition);
}

.blog-sidebar .rc-post-item .content .title a:hover {
    color: var(--pu-yellow);
}

.blog-sidebar .rc-post-item .content span {
    font-size: 12px;
    color: var(--text-muted);
}

.blog-sidebar .rc-post-item .content span i {
    margin-right: 4px;
    color: var(--pu-yellow);
}

/* Sidebar Category List */
.blog-sidebar .sidebar-cat-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar .sidebar-cat-list ul li {
    border-bottom: 1px solid var(--border-light);
}

.blog-sidebar .sidebar-cat-list ul li:last-child {
    border-bottom: none;
}

.blog-sidebar .sidebar-cat-list ul li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.blog-sidebar .sidebar-cat-list ul li a:hover {
    color: var(--pu-yellow);
    transform: translateX(4px);
}

.blog-sidebar .sidebar-cat-list ul li a i {
    margin-right: 10px;
    color: var(--pu-yellow);
    font-size: 12px;
}

.blog-sidebar .sidebar-cat-list ul li a small {
    margin-left: auto;
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================================
   16. BLOG DETAIL / POST PAGE
   ============================================================ */
.blog-details-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-details-content .blog-meta ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-details-content .blog-meta ul li {
    font-size: 14px;
    color: var(--text-secondary);
}

.blog-details-content .blog-meta ul li i {
    margin-right: 6px;
    color: var(--pu-yellow);
}

.blog-details-content .blog-meta ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.blog-details-content .blog-meta ul li a:hover {
    color: var(--pu-yellow);
}

.blog-details-content > .title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 25px;
    color: var(--pu-blue);
}

.blog-details-content p {
    margin-bottom: 18px;
}

.blog-details-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 10px 0;
}

/* Tags & Share */
.bd-content-bottom {
    background: var(--bg-light);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-top: 30px;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tags .title {
    margin: 0;
    font-size: 15px;
    color: var(--pu-blue);
}

.post-tags ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-tags ul li a {
    display: inline-block;
    padding: 4px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.post-tags ul li a:hover {
    background: var(--pu-yellow);
    border-color: var(--pu-yellow);
    color: var(--pu-blue);
}

.blog-post-share ul {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-post-share ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pu-blue);
    color: #ffffff;
    font-size: 14px;
    transition: var(--transition);
}

.blog-post-share ul li a:hover {
    background: var(--pu-yellow);
    color: var(--pu-blue);
    transform: translateY(-3px);
}

/* Prev/Next Nav */
.prev-next-post-wrap {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
}

.prev-next-post-wrap .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--pu-blue);
    border: 1px solid var(--border-light);
}

.prev-next-post-wrap .btn:hover {
    background: var(--pu-yellow);
    border-color: var(--pu-yellow);
    color: var(--pu-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   17. CONTACT PAGE
   ============================================================ */
.contact-info-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    margin-bottom: 25px;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(251, 183, 23, 0.3);
}

.contact-info-item .icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--pu-blue), var(--pu-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.contact-info-item .icon i {
    color: var(--pu-yellow);
    font-size: 24px;
}

.contact-info-item .title {
    color: var(--pu-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-item .content p,
.contact-info-item .content a {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-item .content a:hover {
    color: var(--pu-yellow);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.contact-form-wrap .title {
    font-size: 24px;
    font-weight: 800;
    color: var(--pu-blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 14px;
}

.contact-form-wrap .title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--pu-yellow);
    border-radius: 2px;
}

.contact-form .form-grp {
    margin-bottom: 18px;
}

.contact-form .form-grp input,
.contact-form .form-grp textarea,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text-primary);
    transition: var(--transition);
    background: var(--bg-light);
}

.contact-form .form-grp input:focus,
.contact-form .form-grp textarea:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pu-yellow);
    box-shadow: 0 0 0 3px rgba(251, 183, 23, 0.15);
    background: var(--bg-white);
}

.contact-form .btn {
    background: var(--pu-yellow);
    color: var(--pu-blue);
    border: none;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form .btn:hover {
    background: var(--pu-blue);
    color: var(--pu-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-map iframe {
    border-radius: var(--radius-lg);
}

/* ============================================================
   18. GALLERY PAGE (Dedicated)
   ============================================================ */
.gallery-grid-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.gallery-grid-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-grid-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(19, 47, 83, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-grid-item:hover::after {
    opacity: 1;
}

/* ============================================================
   19. VIDEO GALLERY PAGE
   ============================================================ */
.video-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    margin-bottom: 25px;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-card .video-embed-wrapper {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-card .video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card .video-title {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--pu-blue);
    margin: 0;
}

/* ============================================================
   20. 404 ERROR PAGE
   ============================================================ */
.error-area {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.error-area::before {
    content: '404';
    position: absolute;
    font-size: 30vw;
    font-weight: 900;
    color: rgba(19, 47, 83, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
}

.error-content {
    text-align: center;
    padding: 40px 20px;
}

.error-content .title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--pu-blue);
    margin-bottom: 15px;
}

.error-content p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.error-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background: var(--pu-yellow);
    color: var(--pu-blue);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(251, 183, 23, 0.3);
}

.error-content .btn:hover {
    background: var(--pu-blue);
    color: var(--pu-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(19, 47, 83, 0.3);
}

.error-img {
    text-align: center;
    margin-bottom: 20px;
}

.error-img img {
    max-width: 250px;
    margin: 0 auto;
}

/* ============================================================
   21. PAGES (Static pages - About, etc.)
   ============================================================ */
.about-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-primary);
}

.about-content p {
    margin-bottom: 18px;
}

.about-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.about-content h2,
.about-content h3,
.about-content h4 {
    color: var(--pu-blue);
    margin-top: 25px;
    margin-bottom: 12px;
}

/* ============================================================
   22. SEARCH EMPTY STATE
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 64px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--pu-blue);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================================
   23. SLIDER HERO (Home)
   ============================================================ */
.slider-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(19, 47, 83, 0.85) 0%, rgba(19, 47, 83, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.slider-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--pu-yellow);
    color: var(--pu-blue);
    font-weight: 800;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.slider-hero-title {
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    line-height: 1.35;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pu-yellow);
    color: var(--pu-blue);
    border: none;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.slider-hero-btn:hover {
    background: var(--pu-blue);
    color: var(--pu-yellow);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   24. AGENDA SECTION BACKGROUND
   ============================================================ */
.agenda-section-bg {
    background: var(--bg-light);
    position: relative;
}

.agenda-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pu-yellow), var(--pu-yellow-light), var(--pu-yellow));
}

/* Calendar Wrapper */
.calendar-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
}

.calendar-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* ============================================================
   25. ZONA INTEGRITAS BADGE
   ============================================================ */
.zona-integritas-badge {
    background: var(--pu-blue);
    color: #ffffff;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(19, 47, 83, 0.3);
}

/* ============================================================
   26. UTILITY CLASSES
   ============================================================ */
.section-gap {
    padding: 80px 0;
}

.section-gap-sm {
    padding: 50px 0;
}

/* Smooth Transitions for All Links */
a {
    transition: color 0.3s ease;
}

/* Better Focus States */
:focus-visible {
    outline: 2px solid var(--pu-yellow);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Selection Color */
::selection {
    background: var(--pu-yellow);
    color: var(--pu-blue);
}
