/*
Theme Name: BECO – Berom Educational & Cultural Org
Theme URI: https://josmade.com.ng
Author: Josmade Technologies
Author URI: https://jtown.com.ng
Description: A fully customizable WordPress theme for Berom Educational & Cultural Organization with Elementor support, footer widgets, custom logo, and advanced customization options.
Version: 1.0.0
License: GPL v2 or later
Text Domain: beco
Tags: education, culture, nonprofit, one-column, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, custom-logo, footer-widgets, full-width-template
*/

/* ============================================
   TABLE OF CONTENTS
   1. CSS Variables & Design System
   2. Reset & Base 
   3. Utilities
   4. Loading Spinner
   5. Header & Navigation
   6. Mobile Menu
   7. Search Overlay
   8. Slider Section 
   9. Content & Layout 
   10. Cards & Grids
   11. Mission Block
   12. Impact Stats
   13. Chairman Section
   14. Programs Section
   15. Districts Section
   16. News Section
   17. Events Section
   18. Support Section
   19. Newsletter Section
   20. Culture Block
   21. Pagination
   22. Footer
   23. Move Top Button
   24. Elementor Support
   25. Widget Styles
   26. Customizer Layout Controls
   27. Modular Section System
   28. Admin Z-Index Fixes
   29. Responsive
   ============================================ */

/* ============================================
   1. CSS VARIABLES & DESIGN SYSTEM
   ============================================ */
:root {
    /* Primary Colors */
    --beco-primary: #6a1e2a;
    --beco-primary-dark: #4a1220;
    --beco-primary-light: #8a2a3a;
    --beco-primary-rgb: 106, 30, 42;
    --beco-secondary: #2a4a2a;
    --beco-secondary-rgb: 42, 74, 42;
    --beco-accent: #c9a87c;
    --beco-accent-rgb: 201, 168, 124;
    --beco-accent-dark: #b88a6a;
    
    /* Text Colors */
    --beco-text-light: #4d5d6c;
    --beco-text-dark: #1e2b3c;
    --beco-white: #ffffff;
    --beco-body-bg: #f4f2ed;
    --beco-body-color: #1e2b3c;
    
    /* Neutrals */
    --beco-neutral-50: #f8f7f5;
    --beco-neutral-100: #f0ede8;
    --beco-neutral-200: #e8e3da;
    --beco-neutral-300: #d4d0c8;
    --beco-neutral-400: #b8b2a8;
    --beco-neutral-500: #8a847a;
    --beco-neutral-600: #6a645a;
    --beco-neutral-700: #4a443a;
    --beco-neutral-800: #2a2420;
    --beco-neutral-900: #1a1410;
    
    /* Typography */
    --beco-body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --beco-heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing - 8px Grid */
    --beco-space-1: 0.25rem;
    --beco-space-2: 0.5rem;
    --beco-space-3: 0.75rem;
    --beco-space-4: 1rem;
    --beco-space-5: 1.25rem;
    --beco-space-6: 1.5rem;
    --beco-space-8: 2rem;
    --beco-space-10: 2.5rem;
    --beco-space-12: 3rem;
    --beco-space-16: 4rem;
    --beco-space-20: 5rem;
    --beco-space-24: 6rem;
    
    /* Border Radius */
    --beco-radius-sm: 8px;
    --beco-radius-md: 16px;
    --beco-radius-lg: 24px;
    --beco-radius-xl: 32px;
    --beco-radius-full: 9999px;
    
    /* Shadows */
    --beco-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --beco-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --beco-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --beco-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --beco-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --beco-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --beco-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --beco-transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --beco-transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --beco-container-width: 1200px;
    --beco-header-height: 72px;
    --beco-content-padding: 4rem 4rem;
    --beco-border: rgba(200, 180, 140, 0.12);
}

/* ============================================
   2. RESET & BASE - FIXED
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--beco-header-height);
    overflow-x: hidden !important;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden !important;
}

body {
    font-family: var(--beco-body-font);
    background: var(--beco-body-bg);
    color: var(--beco-body-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--beco-primary);
    color: white;
}

::-moz-selection {
    background: var(--beco-primary);
    color: white;
}

*:focus-visible {
    outline: 3px solid var(--beco-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--beco-neutral-100);
}

::-webkit-scrollbar-thumb {
    background: var(--beco-primary);
    border-radius: var(--beco-radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--beco-primary-dark);
}

/* ============================================
   3. UTILITIES
   ============================================ */
.skip-link {
    position: fixed;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--beco-primary);
    color: white;
    padding: 1rem 2rem;
    z-index: 999999;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gradient-text {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    border: none;
    padding: 0.9rem 2.8rem;
    border-radius: var(--beco-radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(106, 30, 42, 0.35);
    transition: 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px rgba(106, 30, 42, 0.5);
    background: linear-gradient(135deg, #7a2230, #9a3042);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border: 2px solid var(--beco-primary);
    border-radius: var(--beco-radius-full);
    color: var(--beco-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-secondary:hover {
    background: var(--beco-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 30, 42, 0.2);
}

.btn-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
}

.btn-large {
    padding: 1rem 2.8rem;
    font-size: 1.1rem;
}

/* ============================================
   4. LOADING SPINNER
   ============================================ */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1214, #2a1a1e);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

#loader-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(106, 30, 42, 0.1) 0%, transparent 70%);
    animation: loaderPulse 3s ease-in-out infinite;
}

#loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.3, 1) infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: #6a1e2a;
    border-right-color: rgba(106, 30, 42, 0.2);
    animation-duration: 1.2s;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    border-bottom-color: #c9a87c;
    border-left-color: rgba(201, 168, 124, 0.2);
    animation-duration: 1.8s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    border-top-color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
    animation-duration: 1s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.loader-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.loader-brand i {
    font-size: 2.2rem;
    color: #c9a87c;
    background: rgba(201, 168, 124, 0.1);
    padding: 0.5rem;
    border-radius: 12px;
    border: 2px solid rgba(201, 168, 124, 0.2);
}

.loader-name {
    background: linear-gradient(145deg, #e8d5c4, #f5ebe0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-text {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.loader-dots {
    display: inline-flex;
    gap: 0.1rem;
    width: 30px;
}

.dot {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    color: #c9a87c;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
    40% { transform: translateY(-8px); opacity: 1; }
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6a1e2a, #c9a87c);
    border-radius: 10px;
    transition: width 0.3s ease;
    animation: progressAnimation 2.5s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    30% { width: 30%; }
    60% { width: 65%; }
    85% { width: 85%; }
    95% { width: 95%; }
    100% { width: 100%; }
}

.loader-sub {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .loader-spinner { width: 60px; height: 60px; }
    .loader-brand { font-size: 1.5rem; }
    .loader-brand i { font-size: 1.6rem; }
    .loader-text { font-size: 0.9rem; }
    .loader-progress { width: 150px; }
    .loader-sub { font-size: 0.6rem; }
}


/* ============================================
   BRAND / LOGO
   ============================================ */

.loader-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.loader-brand i {
    font-size: 2.2rem;
    color: var(--beco-accent, #c9a87c);
    background: rgba(201, 168, 124, 0.1);
    padding: 0.5rem;
    border-radius: 12px;
    border: 2px solid rgba(201, 168, 124, 0.2);
}

.loader-name {
    background: linear-gradient(145deg, #e8d5c4, #f5ebe0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LOADING TEXT WITH DOTS
   ============================================ */

.loader-text {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.loader-word {
    display: inline-block;
    animation: wordPulse 2s ease-in-out infinite;
}

.loader-dots {
    display: inline-flex;
    gap: 0.1rem;
    width: 30px;
}

.dot {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--beco-accent, #c9a87c);
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
    40% { transform: translateY(-8px); opacity: 1; }
}

@keyframes wordPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   PROGRESS BAR
   ============================================ */

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--beco-primary, #6a1e2a), var(--beco-accent, #c9a87c));
    border-radius: 10px;
    transition: width 0.3s ease;
    animation: progressAnimation 2.5s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    30% { width: 30%; }
    60% { width: 65%; }
    85% { width: 85%; }
    95% { width: 95%; }
    100% { width: 100%; }
}

/* ============================================
   SUB TEXT
   ============================================ */

.loader-sub {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 480px) {
    .loader-spinner {
        width: 60px;
        height: 60px;
    }
    
    .loader-brand {
        font-size: 1.5rem;
    }
    
    .loader-brand i {
        font-size: 1.6rem;
    }
    
    .loader-text {
        font-size: 0.9rem;
    }
    
    .loader-progress {
        width: 150px;
    }
    
    .loader-sub {
        font-size: 0.6rem;
    }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: light) {
    #loader-wrapper {
        background: linear-gradient(145deg, #f8f7f5, #f0ede8);
    }
    
    #loader-wrapper::before {
        background: radial-gradient(circle at center, rgba(106, 30, 42, 0.05) 0%, transparent 70%);
    }
    
    .loader-brand i {
        background: rgba(106, 30, 42, 0.05);
        border-color: rgba(106, 30, 42, 0.1);
    }
    
    .loader-name {
        background: linear-gradient(145deg, #4a1220, #6a1e2a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .loader-text {
        color: rgba(0, 0, 0, 0.5);
    }
    
    .dot {
        color: var(--beco-primary, #6a1e2a);
    }
    
    .loader-progress {
        background: rgba(0, 0, 0, 0.08);
    }
    
    .loader-sub {
        color: rgba(0, 0, 0, 0.2);
    }
}

/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */

/* ============================================
   HEADER - COMPLETE WITH ORGANIZATION NAME
   ============================================ */

.header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    height: var(--beco-header-height, 72px);
    pointer-events: none;
}

/* Transparent header - only on front page */
.front-page .header {
    background: transparent;
}

/* Solid header - all other pages */
.header-solid {
    background: rgba(26, 18, 20, 0.92) !important;
    backdrop-filter: blur(14px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(180%) !important;
    border-bottom: 1px solid rgba(106, 30, 42, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    position: fixed !important;
}

/* Scrolled state - override for all pages */
.header.scrolled {
    position: fixed !important;
    background: rgba(26, 18, 20, 0.92) !important;
    backdrop-filter: blur(14px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(180%) !important;
    border-bottom: 1px solid rgba(106, 30, 42, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    z-index: 10000;
}

/* Ensure front page header stays transparent until scrolled */
.front-page .header:not(.scrolled) {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.header .navbar,
.header .brand-container,
.header .nav-wrapper,
.header .header-actions,
.header .hamburger,
.header .search-toggle {
    pointer-events: auto;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    max-width: var(--beco-container-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--beco-header-height);
}

/* ============================================
   BRAND / LOGO - ENHANCED WITH ORGANIZATION NAME
   ============================================ */

.brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1002;
    position: relative;
    flex-shrink: 0;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.header.scrolled .custom-logo {
    max-height: 42px;
}

/* Logo Icon (Fallback) */
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--beco-accent, #c9a87c);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 124, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(201, 168, 124, 0.2);
}

.header.scrolled .logo-icon {
    background: rgba(201, 168, 124, 0.05);
    border-color: rgba(201, 168, 124, 0.1);
    color: var(--beco-accent-dark, #b88a6a);
}

.logo-icon:hover {
    color: #fff;
    background: rgba(201, 168, 124, 0.2);
}

/* Site Branding - Text */
.site-branding {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* Site Title - BECO (Main Brand) */
.site-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    line-height: 1.1;
}

.header.scrolled .site-title {
    color: #f0e8e0;
    text-shadow: none;
    font-size: 1.3rem;
}

.site-title:hover {
    opacity: 0.85;
}

/* Organization Name - Full Name */
.organization-name {
    display: block;
    line-height: 1.2;
}

.org-full-name {
    font-size: 0.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.header.scrolled .org-full-name {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.55rem;
}

/* Site Description (Tagline) */
.site-description {
    font-size: 0.55rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.header.scrolled .site-description {
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    list-style: none;
    font-weight: 500;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--beco-radius-sm);
    transition: all var(--beco-transition-fast);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.header.scrolled .nav-links > li > a {
    color: #e8e0d8;
    text-shadow: none;
}

.nav-links > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.header.scrolled .nav-links > li > a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav-links > li > a .sub-menu-icon {
    font-size: 0.6rem;
    transition: transform var(--beco-transition-fast);
    margin-left: 0.2rem;
}

.nav-links > li:hover > a .sub-menu-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-links .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    padding: 0.5rem;
    background: var(--beco-white);
    border-radius: var(--beco-radius-md);
    box-shadow: var(--beco-shadow-2xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--beco-transition-base);
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.header.scrolled .nav-links .sub-menu {
    background: rgba(26, 18, 20, 0.95);
    backdrop-filter: blur(14px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.06);
}

.nav-links > li:hover .sub-menu,
.nav-links > li:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-links .sub-menu li {
    margin: 0;
}

.nav-links .sub-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--beco-text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--beco-radius-sm);
    transition: all var(--beco-transition-fast);
}

.header.scrolled .nav-links .sub-menu a {
    color: #e8e0d8;
}

.nav-links .sub-menu a:hover {
    background: var(--beco-neutral-100);
    color: var(--beco-primary);
}

.header.scrolled .nav-links .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--beco-accent);
}

/* Highlight Button (Donate) */
.nav-links .highlight a {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--beco-radius-full);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(106, 30, 42, 0.25);
}

.nav-links .highlight a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 30, 42, 0.4);
    background: linear-gradient(135deg, #7a2230, #9a3042);
}

/* ============================================
   HEADER ACTIONS
   ============================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 1002;
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: var(--beco-radius-full);
    transition: all var(--beco-transition-fast);
}

.header.scrolled .search-toggle {
    color: #e8e0d8;
}

.search-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.hamburger-box {
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-inner {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all var(--beco-transition-base);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    transition: all var(--beco-transition-base);
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.header.scrolled .hamburger-inner,
.header.scrolled .hamburger-inner::before,
.header.scrolled .hamburger-inner::after {
    background: #e8e0d8;
}

.hamburger.active .hamburger-inner {
    background: transparent;
}

.hamburger.active .hamburger-inner::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-inner::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE RESPONSIVE - HEADER
   ============================================ */

@media (max-width: 1024px) {
    .site-title {
        font-size: 1.3rem;
    }
    .org-full-name {
        font-size: 0.55rem;
    }
}

@media (max-width: 820px) {
    .brand-container {
        gap: 0.5rem;
    }
    
    .site-title {
        font-size: 1.1rem;
    }
    
    .org-full-name {
        font-size: 0.5rem;
    }
    
    .site-description {
        display: none;
    }
    
    .custom-logo {
        max-height: 40px;
    }
    
    .header.scrolled .site-title {
        font-size: 1rem;
    }
    
    .header.scrolled .org-full-name {
        font-size: 0.45rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-container {
        gap: 0.4rem;
    }
    
    .site-title {
        font-size: 0.95rem;
    }
    
    .org-full-name {
        font-size: 0.4rem;
        letter-spacing: 0.3px;
    }
    
    .custom-logo {
        max-height: 35px;
    }
    
    .header.scrolled .site-title {
        font-size: 0.85rem;
    }
    
    .header.scrolled .org-full-name {
        font-size: 0.35rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* ============================================
   ADMIN BAR OVERRIDES
   ============================================ */

.admin-bar .header {
    top: 32px;
}

.admin-bar .header.scrolled {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
    .admin-bar .header.scrolled {
        top: 46px;
    }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: dark) {
    .org-full-name {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .header.scrolled .org-full-name {
        color: rgba(255, 255, 255, 0.3);
    }
    
    .site-description {
        color: rgba(255, 255, 255, 0.35);
    }
    
    .header.scrolled .site-description {
        color: rgba(255, 255, 255, 0.2);
    }
}

/* ============================================
   6. MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: linear-gradient(145deg, #1a1214, #2a1a1e);
    z-index: 100002;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.mobile-menu-header .menu-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mobile-menu-header .menu-logo .custom-logo {
    max-height: 35px;
}

.mobile-menu-header .menu-logo i {
    color: var(--beco-accent);
}

.mobile-menu-header .menu-logo span {
    background: linear-gradient(145deg, #e8d5c4, #f5ebe0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--beco-accent);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.2rem;
    transition: transform 0.3s;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
}

.mobile-menu-list li {
    margin-bottom: 0.2rem;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.25s ease;
    font-weight: 500;
}

.mobile-menu-list a:hover {
    background: rgba(201, 168, 124, 0.12);
    color: #fff;
}

.mobile-menu-list a i {
    width: 24px;
    color: var(--beco-accent);
    font-size: 1.1rem;
}

.mobile-menu-list .highlight-mobile {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white !important;
    border-radius: 12px;
    margin-top: 0.5rem;
    font-weight: 600;
}

.mobile-menu-list .highlight-mobile:hover {
    background: linear-gradient(135deg, #7a2230, #9a3042);
    transform: scale(1.02);
}

.mobile-menu-list .highlight-mobile i {
    color: white;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.25s ease;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.mobile-dropdown-toggle:hover {
    background: rgba(201, 168, 124, 0.12);
    color: #fff;
}

.mobile-dropdown-toggle i:first-child {
    width: 24px;
    color: var(--beco-accent);
    font-size: 1.1rem;
}

.mobile-dropdown-toggle .arrow-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.mobile-dropdown-toggle.open .arrow-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    padding-left: 0.5rem;
}

.mobile-dropdown-content.open {
    max-height: 500px;
}

.mobile-dropdown-content a {
    padding-left: 2.8rem !important;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.mobile-dropdown-content a:hover {
    color: #fff !important;
    background: rgba(201, 168, 124, 0.08) !important;
}

.mobile-dropdown-content a i {
    font-size: 0.85rem !important;
    width: 20px !important;
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-shrink: 0;
}

.mobile-menu-footer .social-links {
    display: flex;
    gap: 1rem;
}

.mobile-menu-footer .social-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: color 0.3s;
    text-decoration: none;
}

.mobile-menu-footer .social-links a:hover {
    color: var(--beco-accent);
}

.mobile-menu-footer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* ============================================
   7. SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--beco-transition-slow);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay .search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform var(--beco-transition-fast);
}

.search-overlay .search-close:hover {
    transform: rotate(90deg);
}

.search-container {
    max-width: 600px;
    width: 90%;
}

.search-container .search-form {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

.search-container .search-field {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: 300;
    outline: none;
    font-family: var(--beco-body-font);
}

.search-container .search-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-container .search-submit {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform var(--beco-transition-fast);
}

.search-container .search-submit:hover {
    transform: translateX(4px);
}

.search-suggestions {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.search-suggestions p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-suggestions ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.search-suggestions ul li a {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: var(--beco-radius-full);
    font-size: 0.9rem;
    transition: all var(--beco-transition-fast);
}

.search-suggestions ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ============================================
   8. SLIDER SECTION - FIXED FULL WIDTH
   ============================================ */
.slider-section {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background: #1a1214;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0;
    z-index: 1;
}

.slider-section .n2-section-smartslider {
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.slider-section .n2-ss-slider {
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.slider-section .n2-ss-slide {
    height: 100vh !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}

.slider-section .n2-ss-slider-container {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Fallback Slider - FIXED */
.fallback-slider {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fallback-slider .slide {
    width: 100% !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 2rem 1.5rem !important;
    background-size: cover !important;
    background-position: center !important;
    color: white !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 0 !important;
    transition: opacity 1s ease !important;
    margin: 0 !important;
}

.fallback-slider .slide.active {
    opacity: 1 !important;
}

.fallback-slider .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(26, 18, 20, 0.55) 0%, rgba(30, 50, 30, 0.50) 100%);
    backdrop-filter: brightness(0.75) blur(2px);
    z-index: 1;
}

.fallback-slider .slide>* {
    position: relative;
    z-index: 2;
}

.fallback-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    z-index: 10;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.fallback-controls button {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fallback-controls button:hover {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    border-color: var(--beco-accent);
    transform: scale(1.06);
}

.fallback-dots {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin: 0 0.8rem;
}

.fallback-dot {
    width: 14px;
    height: 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.fallback-dot.active {
    background: var(--beco-accent);
    width: 34px;
    box-shadow: 0 0 20px rgba(201, 168, 124, 0.4);
}

/* ============================================
   9. CONTENT & LAYOUT - FIXED CONTAINER
   ============================================ */
.content-spacer {
    position: relative;
    background: var(--beco-body-bg);
    margin-top: -2px;
    padding-top: 1px;
    z-index: 2;
}

.container {
    max-width: var(--beco-container-width, 1200px) !important;
    margin: 0 auto !important;
    padding: var(--beco-content-padding, 4rem 4rem) !important;
    width: 100% !important;
}

/* Section Titles */
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    color: var(--beco-text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.section-title i {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .title-badge {
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    padding: 0.2rem 1rem;
    border-radius: var(--beco-radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-description {
    color: var(--beco-text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 700px;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-header-content {
    flex: 1;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--beco-primary);
    background: rgba(106, 30, 42, 0.08);
    padding: 0.2rem 1rem;
    border-radius: var(--beco-radius-full);
    margin-bottom: 0.5rem;
}

.section-header-content .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 0.3rem;
}

.section-subtitle {
    color: var(--beco-text-light);
    font-size: 1.05rem;
    max-width: 600px;
}

.view-all-link {
    color: var(--beco-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--beco-primary);
    border-radius: var(--beco-radius-full);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.view-all-link:hover {
    background: var(--beco-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 30, 42, 0.2);
}

/* Animations */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-onload {
    animation: fadeUp 0.9s ease forwards;
}

/* ============================================
   10. CARDS & GRIDS
   ============================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--beco-white);
    padding: 2.5rem 2rem;
    border-radius: var(--beco-radius-lg);
    box-shadow: var(--beco-shadow-md);
    transition: all var(--beco-transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-secondary), var(--beco-accent));
    opacity: 0;
    transition: opacity var(--beco-transition-base);
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--beco-shadow-xl);
    border-color: rgba(106, 30, 42, 0.08);
}

.card i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: inline-block;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--beco-text-dark);
}

.card p {
    color: var(--beco-text-light);
    font-size: 0.95rem;
}

/* ============================================
   11. MISSION BLOCK
   ============================================ */
.mission-block {
    background: linear-gradient(145deg, #f0ede8, #e8e3da);
    border-radius: var(--beco-radius-xl);
    padding: 4rem 3.5rem;
    margin: 4rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    border: 1px solid rgba(106, 30, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.mission-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 30, 42, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission-block .mission-content {
    flex: 2;
    min-width: 240px;
    position: relative;
    z-index: 1;
}

.mission-block .mission-icon {
    flex: 1;
    min-width: 160px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-block h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--beco-text-dark);
}

.mission-block h3 i {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-block p {
    font-size: 1.1rem;
    color: #2d3f4b;
}

.mission-block .mission-icon i.fa-hands-helping {
    background: linear-gradient(135deg, var(--beco-secondary), #4a7a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
}

/* Mission Compact */
.mission-compact {
    padding: 2.5rem 3rem !important;
    margin: 2rem 0 3rem !important;
}

.mission-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--beco-primary);
    background: rgba(106, 30, 42, 0.08);
    padding: 0.2rem 1rem;
    border-radius: var(--beco-radius-full);
    margin-bottom: 0.5rem;
}

.mission-compact h3 {
    font-size: 1.6rem !important;
    margin-bottom: 0.5rem;
}

.mission-compact p {
    font-size: 1rem !important;
    max-width: 600px;
}

.mission-values {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.value-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--beco-text-light);
    background: var(--beco-white);
    padding: 0.2rem 0.8rem;
    border-radius: var(--beco-radius-full);
    border: 1px solid var(--beco-border);
}

.value-tag i {
    color: var(--beco-accent);
    font-size: 0.6rem;
}

.mission-compact .mission-icon i.fa-hands-helping {
    font-size: 3.5rem !important;
}

/* ============================================
   12. IMPACT STATS
   ============================================ */
.impact-stats {
    padding: 2rem 0 1rem;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--beco-white);
    border-radius: var(--beco-radius-xl);
    padding: 3rem 2rem;
    box-shadow: var(--beco-shadow-md);
    border: 1px solid var(--beco-border);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--beco-primary);
    line-height: 1.2;
    font-family: var(--beco-heading-font);
}

.stat-label {
    font-size: 1rem;
    color: var(--beco-text-light);
    font-weight: 500;
    margin-top: 0.25rem;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--beco-accent);
    margin-top: 0.5rem;
    opacity: 0.5;
}

/* ============================================
   13. CHAIRMAN SECTION
   ============================================ */
.chairman-section {
    padding: 2rem 0 3rem;
}

.chairman-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    background: var(--beco-white);
    border-radius: var(--beco-radius-xl);
    padding: 3rem;
    box-shadow: var(--beco-shadow-md);
    border: 1px solid var(--beco-border);
    position: relative;
    overflow: hidden;
}

.chairman-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-secondary), var(--beco-accent));
}

.chairman-image {
    text-align: center;
}

.chairman-image-wrapper {
    position: relative;
    display: inline-block;
}

.chairman-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--beco-radius-lg);
    box-shadow: var(--beco-shadow-lg);
    display: block;
    position: relative;
    z-index: 2;
}

.chairman-frame {
    position: absolute;
    top: 12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--beco-primary);
    border-radius: var(--beco-radius-lg);
    z-index: 1;
    opacity: 0.3;
}

.chairman-name {
    margin-top: 1.5rem;
}

.chairman-name h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 0.2rem;
}

.chairman-name p {
    color: var(--beco-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.chairman-fallback {
    display: none;
}

.chairman-image-wrapper .chairman-fallback i {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.chairman-photo[style*="display: none"] + .chairman-fallback {
    display: flex !important;
}

.chairman-message {
    padding: 0.5rem 0;
}

.chairman-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--beco-primary);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: var(--beco-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.chairman-badge i {
    font-size: 0.8rem;
}

.chairman-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 0.5rem;
}

.chairman-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-accent));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.chairman-text {
    color: var(--beco-text-light);
    line-height: 1.8;
}

.chairman-text p {
    margin-bottom: 1rem;
}

.chairman-greeting {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--beco-text-dark);
}

.chairman-signature {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--beco-border);
    font-style: italic;
}

.chairman-signature strong {
    color: var(--beco-text-dark);
    font-style: normal;
}

.chairman-signature span {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--beco-text-light);
}

.chairman-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* ============================================
   14. PROGRAMS SECTION
   ============================================ */
.programs-section {
    padding: 3rem 0 2rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--beco-white);
    padding: 2.5rem 2rem;
    border-radius: var(--beco-radius-lg);
    text-align: center;
    box-shadow: var(--beco-shadow-sm);
    transition: all var(--beco-transition-base);
    border: 1px solid var(--beco-border);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-secondary), var(--beco-accent));
    opacity: 0;
    transition: opacity var(--beco-transition-base);
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--beco-shadow-xl);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #f0ede8, #e8e3da);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: var(--beco-primary);
    transition: all 0.3s;
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
}

.program-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 0.7rem;
}

.program-card p {
    color: var(--beco-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--beco-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-link:hover {
    gap: 0.9rem;
    color: var(--beco-primary-light);
}

/* ============================================
   15. DISTRICTS SECTION
   ============================================ */
.districts-section {
    padding: 2rem 0 3rem;
}

.districts-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.districts-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    gap: 2rem;
    will-change: transform;
}

.district-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 260px;
    background: var(--beco-white);
    border-radius: var(--beco-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--beco-shadow-md);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.district-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-secondary), var(--beco-accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.district-card:hover::before {
    opacity: 1;
}

.district-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--beco-shadow-xl);
    border-color: rgba(106, 30, 42, 0.08);
}

.district-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #f0ede8, #e8e3da);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: var(--beco-primary);
    transition: all 0.3s;
}

.district-card:hover .district-icon {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    transform: scale(1.05);
}

.district-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 0.3rem;
}

.district-card .district-location {
    color: var(--beco-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.district-card p {
    color: var(--beco-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.district-card .district-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e3da;
}

.district-card .district-stats span {
    font-size: 0.85rem;
    color: var(--beco-text-light);
}

.district-card .district-stats strong {
    display: block;
    font-size: 1.2rem;
    color: var(--beco-text-dark);
}

.district-card .district-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--beco-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.district-card .district-link:hover {
    gap: 0.9rem;
    color: #8a2a3a;
}

/* District Controls */
.district-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.district-controls button {
    background: var(--beco-white);
    border: 2px solid #e8e3da;
    color: var(--beco-text-dark);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--beco-shadow-sm);
}

.district-controls button:hover {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    border-color: var(--beco-primary);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(106, 30, 42, 0.2);
}

.district-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    background: var(--beco-white);
    color: var(--beco-text-dark);
    border-color: #e8e3da;
    box-shadow: none;
}

.district-dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.district-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4d0c8;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.district-dot.active {
    background: var(--beco-primary);
    width: 28px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(106, 30, 42, 0.2);
}

.district-dot:hover {
    background: var(--beco-primary);
    transform: scale(1.1);
}

/* ============================================
   16. NEWS SECTION
   ============================================ */
.news-section {
    padding: 3rem 0 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--beco-white);
    border-radius: var(--beco-radius-lg);
    overflow: hidden;
    box-shadow: var(--beco-shadow-md);
    transition: all var(--beco-transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--beco-shadow-xl);
    border-color: rgba(106, 30, 42, 0.08);
}

.news-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.news-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.news-image .category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    padding: 0.35rem 1.2rem;
    border-radius: var(--beco-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(106, 30, 42, 0.3);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.news-image .date-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--beco-radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.news-body {
    padding: 1.5rem 1.5rem 1.8rem;
    position: relative;
}

.news-body .news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #8a9aa8;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.news-body .news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.news-body .news-meta i {
    font-size: 0.7rem;
    color: var(--beco-primary);
}

.news-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--beco-text-dark);
    line-height: 1.3;
}

.news-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.news-body h3 a:hover {
    color: var(--beco-primary);
}

.news-body .news-excerpt {
    color: var(--beco-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-body .news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0ede8;
}

.news-body .read-more {
    color: var(--beco-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.news-body .read-more:hover {
    gap: 0.9rem;
    color: #8a2a3a;
}

.news-body .read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.news-body .read-more:hover i {
    transform: translateX(4px);
}

.news-body .news-share {
    display: flex;
    gap: 0.5rem;
}

.news-body .news-share a {
    color: #8a9aa8;
    font-size: 0.85rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f2ed;
    text-decoration: none;
}

.news-body .news-share a:hover {
    color: white;
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    transform: scale(1.1);
}

/* ============================================
   17. EVENTS SECTION
   ============================================ */
.events-section {
    padding: 2rem 0 1rem;
}

.events-grid {
    display: grid;
    gap: 1.25rem;
}

.event-card {
    background: var(--beco-white);
    border-radius: var(--beco-radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--beco-shadow-sm);
    transition: all 0.35s ease;
    border: 1px solid var(--beco-border);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.event-card:hover {
    transform: translateX(6px);
    box-shadow: var(--beco-shadow-lg);
}

.event-date {
    flex-shrink: 0;
    background: linear-gradient(145deg, #f0ede8, #e8e3da);
    border-radius: var(--beco-radius-md);
    padding: 0.8rem 1.2rem;
    text-align: center;
    min-width: 70px;
}

.event-date-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--beco-primary);
    line-height: 1;
}

.event-date-month {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--beco-text-light);
    letter-spacing: 0.5px;
}

.event-date-year {
    font-size: 0.6rem;
    color: var(--beco-text-light);
}

.event-info {
    flex: 1;
}

.event-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--beco-text-dark);
    margin-bottom: 0.2rem;
}

.event-info h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.event-info h4 a:hover {
    color: var(--beco-primary);
}

.event-info p {
    color: var(--beco-text-light);
    font-size: 0.9rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.3rem;
}

.event-meta span {
    font-size: 0.85rem;
    color: var(--beco-text-light);
}

.event-meta i {
    color: var(--beco-primary);
    margin-right: 0.3rem;
}

/* ============================================
   18. SUPPORT SECTION
   ============================================ */
.support-section {
    padding: 3rem 0 2rem;
}

.support-inner {
    background: linear-gradient(145deg, #1a1214, #2a1a1e);
    border-radius: var(--beco-radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.support-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.support-content {
    position: relative;
    z-index: 1;
}

.support-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--beco-accent);
    background: rgba(201, 168, 124, 0.15);
    padding: 0.2rem 1rem;
    border-radius: var(--beco-radius-full);
    margin-bottom: 0.5rem;
}

.support-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.support-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 500px;
    line-height: 1.7;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.support-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.support-image-placeholder {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.support-image-placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   19. NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 1rem 0 2rem;
}

.newsletter-box {
    background: linear-gradient(145deg, #f0ede8, #e8e3da);
    border-radius: var(--beco-radius-xl);
    padding: 3rem 3.5rem;
    text-align: center;
    border: 1px solid rgba(106, 30, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 30, 42, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-icon {
    font-size: 3rem;
    color: var(--beco-primary);
    margin-bottom: 0.5rem;
}

.newsletter-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 0.5rem;
}

.newsletter-box p {
    color: var(--beco-text-light);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 1.5rem;
    border: 2px solid #d4d0c8;
    border-radius: var(--beco-radius-full);
    font-size: 1rem;
    background: var(--beco-white);
    transition: border-color 0.3s;
    outline: none;
    font-family: inherit;
}

.newsletter-form input:focus {
    border-color: var(--beco-primary);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: var(--beco-radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(106, 30, 42, 0.25);
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(106, 30, 42, 0.35);
    background: linear-gradient(135deg, #7a2230, #9a3042);
}

#newsletterMessage {
    margin-top: 1rem;
    font-weight: 500;
}

/* ============================================
   20. CULTURE BLOCK
   ============================================ */
.culture-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: linear-gradient(145deg, #e8f0e8, #d4e0d4);
    padding: 2rem 2.5rem;
    border-radius: var(--beco-radius-full);
    border: 1px solid rgba(42, 74, 42, 0.1);
    margin: 2rem 0 1rem;
}

.culture-block i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.culture-block span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--beco-text-dark);
}

.culture-badge {
    margin-left: auto;
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    padding: 0.4rem 1.6rem;
    border-radius: var(--beco-radius-full);
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(106, 30, 42, 0.2);
}

/* ============================================
   21. PAGINATION
   ============================================ */
.beco-pagination {
    margin: 3rem 0 1rem;
    text-align: center;
}

.beco-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.beco-pagination ul li {
    margin: 0;
}

.beco-pagination ul li .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--beco-white);
    color: var(--beco-text-dark);
    border: 2px solid #e8e3da;
    border-radius: var(--beco-radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.beco-pagination ul li .page-numbers:hover {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    border-color: var(--beco-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 30, 42, 0.2);
}

.beco-pagination ul li .page-numbers.current {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    border-color: var(--beco-primary);
    box-shadow: 0 8px 20px rgba(106, 30, 42, 0.2);
}

.beco-pagination ul li .page-numbers.dots {
    border: none;
    background: transparent;
    color: var(--beco-text-light);
    cursor: default;
    box-shadow: none;
}

.beco-pagination ul li .page-numbers.prev,
.beco-pagination ul li .page-numbers.next {
    padding: 0 1.5rem;
    gap: 0.5rem;
}

.beco-pagination ul li .page-numbers.prev i,
.beco-pagination ul li .page-numbers.next i {
    font-size: 0.8rem;
}

/* ============================================
   22. FOOTER
   ============================================ */
/* ============================================
   ENHANCED FOOTER STYLES
   ============================================ */

.footer {
    background: linear-gradient(145deg, #1a1214, #1a2a1a);
    color: #d6dce3;
    padding: 0 !important;
    margin-top: 3rem;
    border-top: 1px solid rgba(201, 168, 124, 0.1);
}

/* Footer Widgets */
.footer-widgets {
    max-width: var(--beco-container-width, 1200px);
    margin: 0 auto;
    padding: 3rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Footer Divider */
.footer-divider {
    position: relative;
    max-width: var(--beco-container-width, 1200px);
    margin: 0 auto;
    padding: 0 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 124, 0.2), transparent);
}

.footer-divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1214;
    padding: 0 1rem;
    color: var(--beco-accent, #c9a87c);
    font-size: 1.2rem;
}

/* Footer Bottom */
.footer-bottom {
    max-width: var(--beco-container-width, 1200px);
    margin: 0 auto;
    padding: 2rem 2rem 1.5rem;
}

.footer-bottom-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Organization Info */
.footer-org-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-org-info .footer-since {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-org-info .footer-address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
}

.footer-org-info .footer-address a {
    color: var(--beco-accent, #c9a87c);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-org-info .footer-address a:hover {
    color: #ffffff;
}

/* Footer Navigation */
.footer-nav-wrapper {
    display: flex;
    justify-content: center;
}

.footer-nav-container {
    display: flex;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--beco-accent, #c9a87c);
    transition: width 0.3s ease;
}

.footer-nav li a:hover {
    color: #ffffff;
}

.footer-nav li a:hover::after {
    width: 100%;
}

/* Footer Social */
.footer-social-wrapper {
    display: flex;
    justify-content: flex-end;
}

.footer-social-wrapper .social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-wrapper .social-links a,
.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-social-wrapper .social-links a:hover,
.footer-social-links a:hover {
    background: linear-gradient(135deg, var(--beco-primary, #6a1e2a), var(--beco-primary-light, #8a2a3a));
    color: #ffffff;
    transform: translateY(-3px);
}

/* Footer Credit */
.footer-credit {
    padding-top: 1.5rem;
}

.footer-credit-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-credit-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.credit-copyright {
    color: rgba(255, 255, 255, 0.25);
}

.credit-divider {
    color: rgba(255, 255, 255, 0.1);
}

.credit-designed {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.35);
}

.credit-designed i.fa-heart {
    animation: pulse-heart 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.credit-link {
    color: var(--beco-accent, #c9a87c);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.credit-link:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(201, 168, 124, 0.3);
}

.credit-version {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    font-family: monospace;
}

/* Credit Quick Links */
.footer-credit-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.credit-link-item {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-link-item:hover {
    color: rgba(255, 255, 255, 0.6);
}

.credit-link-divider {
    color: rgba(255, 255, 255, 0.1);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.back-to-top i {
    font-size: 0.7rem;
}

/* ============================================
   RESPONSIVE FOOTER
   ============================================ */

@media (max-width: 1024px) {
    .footer-bottom-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-social-wrapper {
        justify-content: center;
    }
    
    .footer-org-info .footer-address {
        text-align: center;
    }
    
    .footer-credit-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-credit-text {
        justify-content: center;
    }
    
    .footer-credit-links {
        justify-content: center;
    }
}

@media (max-width: 820px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        padding: 2.5rem 1.5rem 2rem;
        gap: 1.5rem;
    }
    
    .footer-nav {
        gap: 1rem;
    }
    
    .footer-nav li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        padding: 2rem 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-credit-text {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .credit-divider {
        display: none;
    }
    
    .footer-social-wrapper .social-links {
        gap: 0.5rem;
    }
    
    .footer-social-wrapper .social-links a,
    .footer-social-links a {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    
    .footer-credit-links {
        gap: 0.3rem;
        font-size: 0.75rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .footer {
        background: linear-gradient(145deg, #0a0a0a, #0a1a0a);
    }
    
    .footer-divider-icon {
        background: #0a0a0a;
    }
    
    .footer-widgets .widget-title {
        color: #f0ede8;
    }
    
    .footer-widgets p,
    .footer-widgets li a {
        color: rgba(255, 255, 255, 0.6);
    }
}



/* ============================================
   23. MOVE TOP BUTTON
   ============================================ */
#moveTopBtn {
    position: fixed;
    bottom: 2.8rem;
    right: 2.8rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    box-shadow: 0 12px 30px rgba(106, 30, 42, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

#moveTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#moveTopBtn:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 18px 40px rgba(106, 30, 42, 0.5);
    background: linear-gradient(135deg, #7a2230, #9a3042);
}

/* ============================================
   24. ELEMENTOR SUPPORT
   ============================================ */
.elementor-page .content-spacer {
    background: transparent;
    padding-top: 0;
}

.elementor-page .container {
    max-width: 100%;
    padding: 0;
}

.elementor-page .footer {
    margin-top: 0;
}

.elementor-page .slider-section {
    margin: 0 !important;
    padding: 0 !important;
}

.page-template-template-elementor-full .container {
    max-width: 100%;
    padding: 0;
}

.page-template-template-elementor-full .content-spacer {
    background: transparent;
    padding-top: 0;
}

.page-template-template-elementor-blank .header {
    display: none;
}

.page-template-template-elementor-blank .footer {
    display: none;
}

.page-template-template-elementor-blank .container {
    max-width: 100%;
    padding: 0;
}

.page-template-template-elementor-blank .content-spacer {
    background: transparent;
    padding-top: 0;
}

/* ============================================
   25. WIDGET STYLES
   ============================================ */
.widget {
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--beco-text-dark);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.widget ul li a {
    color: var(--beco-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: var(--beco-primary);
}

.widget select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--beco-white);
}

.widget .search-form {
    display: flex;
    gap: 0.5rem;
}

.widget .search-form input[type="search"] {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 2px solid #d4d0c8;
    border-radius: var(--beco-radius-full);
    outline: none;
}

.widget .search-form input[type="search"]:focus {
    border-color: var(--beco-primary);
}

.widget .search-form button {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-light));
    color: white;
    border: none;
    border-radius: var(--beco-radius-full);
    cursor: pointer;
    transition: background 0.3s ease;
}

.widget .search-form button:hover {
    background: linear-gradient(135deg, #7a2230, #9a3042);
}

/* ============================================
   26. CUSTOMIZER LAYOUT CONTROLS
   ============================================ */
body.content-full-width .container {
    max-width: 100% !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

body.content-full-width .content-spacer {
    padding-left: 0;
    padding-right: 0;
}

body.no-content-max-width .container {
    max-width: 100% !important;
}

body.slider-full-width .slider-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.slider-not-full-width .slider-section {
    max-width: var(--beco-container-width, 1200px) !important;
    margin: 0 auto !important;
    width: 100% !important;
    border-radius: var(--beco-radius-lg);
    overflow: hidden;
}

body.slider-not-full-width .slider-section .n2-section-smartslider {
    max-width: 100% !important;
    width: 100% !important;
}

body.slider-not-full-width .fallback-slider {
    width: 100% !important;
    max-width: 100% !important;
}

/* ============================================
   27. MODULAR SECTION SYSTEM
   ============================================ */
.section {
    position: relative;
    width: 100%;
    padding: 4rem 0;
}

.section .section-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Section Width Variants */
.section-full-width {
    padding: 0;
}

.section-full-width .section-inner {
    max-width: 100%;
    padding: 0;
}

.section-full-width-alt {
    padding: 4rem 0;
    background: var(--beco-neutral-100);
}

.section-full-width-alt .section-inner {
    max-width: 100%;
    padding: 0 2rem;
}

.section-contained .section-inner {
    max-width: var(--beco-container-width, 1200px);
    padding: 0 2rem;
    margin: 0 auto;
}

.section-contained-alt {
    padding: 4rem 0;
    background: var(--beco-neutral-50);
}

.section-contained-alt .section-inner {
    max-width: var(--beco-container-width, 1200px);
    padding: 0 2rem;
    margin: 0 auto;
}

/* Section Padding */
.section-padding-none { padding: 0; }
.section-padding-sm { padding: 2rem 0; }
.section-padding-md { padding: 4rem 0; }
.section-padding-lg { padding: 6rem 0; }
.section-padding-xl { padding: 8rem 0; }

/* Section Margin */
.section-margin-none { margin: 0; }
.section-margin-sm { margin: 1rem 0; }
.section-margin-md { margin: 2rem 0; }
.section-margin-lg { margin: 3rem 0; }
.section-margin-xl { margin: 4rem 0; }

/* Individual Section Overrides */
.section-slider {
    padding: 0 !important;
    margin: 0 !important;
}

.section-slider .section-inner {
    padding: 0 !important;
}

.section-mission { padding: 2rem 0; }
.section-programs { padding: 3rem 0; }

.section-districts {
    padding: 4rem 0;
    background: var(--beco-neutral-50);
}

.section-news { padding: 3rem 0; }

.section-culture {
    padding: 2rem 0;
    background: var(--beco-neutral-100);
}

/* Container Width Overrides */
.container-wide { max-width: 1400px !important; }
.container-narrow { max-width: 800px !important; }
.container-full { max-width: 100% !important; padding-left: 2rem; padding-right: 2rem; }

/* Background Variants */
.bg-white { background: var(--beco-white); }
.bg-light { background: var(--beco-neutral-50); }
.bg-dark { background: var(--beco-neutral-900); color: white; }
.bg-primary { background: var(--beco-primary); color: white; }
.bg-gradient-primary { background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-dark)); color: white; }

/* Section Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-accent));
    border-radius: 2px;
    margin: 1.5rem 0;
}

.section-divider.centered {
    margin-left: auto;
    margin-right: auto;
}

/* Pattern Overlay */
.section-pattern {
    position: relative;
    overflow: hidden;
}

.section-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

/* ============================================
   28. ADMIN Z-INDEX FIXES
   ============================================ */
.admin-bar .header {
    top: 32px;
}

.admin-bar .header.scrolled {
    top: 32px;
}

.admin-bar .slider-section {
    height: calc(100vh - 32px);
    max-height: calc(100vh - 32px);
}

.admin-bar .slider-section .n2-section-smartslider,
.admin-bar .slider-section .n2-ss-slider,
.admin-bar .slider-section .n2-ss-slide {
    height: calc(100vh - 32px) !important;
    max-height: calc(100vh - 32px) !important;
}

.admin-bar .fallback-slider {
    height: calc(100vh - 32px) !important;
    max-height: calc(100vh - 32px) !important;
}

.admin-bar .fallback-slider .slide {
    height: calc(100vh - 32px) !important;
}

.customize-preview .header {
    z-index: 9999;
}

.elementor-edit-area .header {
    z-index: 9999;
}

#wpadminbar {
    z-index: 999999 !important;
}

/* ============================================
   29. RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 3rem 2.5rem !important;
    }
    
    .chairman-grid {
        padding: 2.5rem 2rem;
        gap: 2rem;
    }
    
    .support-inner {
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 3rem 2rem !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .chairman-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .district-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .support-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .support-buttons {
        justify-content: center;
    }
}

@media (max-width: 820px) {
    .container {
        padding: 2.5rem 1.5rem !important;
    }
    
    .nav-wrapper {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .search-toggle {
        display: flex;
    }
    
    .header-actions {
        gap: 0.25rem;
    }
    
    .navbar {
        padding: 0 1rem;
    }
    
    .site-title {
        font-size: 1.1rem;
    }
    
    .site-description {
        display: none;
    }
    
    .custom-logo {
        max-height: 40px;
    }
    
    .slider-section,
    .slider-section .n2-section-smartslider,
    .slider-section .n2-ss-slider,
    .slider-section .n2-ss-slide {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }
    
    .admin-bar .slider-section,
    .admin-bar .slider-section .n2-section-smartslider,
    .admin-bar .slider-section .n2-ss-slider,
    .admin-bar .slider-section .n2-ss-slide {
        height: calc(100vh - 46px) !important;
        min-height: calc(100vh - 46px) !important;
        max-height: calc(100vh - 46px) !important;
    }
    
    .admin-bar .fallback-slider {
        height: calc(100vh - 46px) !important;
        max-height: calc(100vh - 46px) !important;
    }
    
    .admin-bar .fallback-slider .slide {
        height: calc(100vh - 46px) !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .chairman-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .chairman-image-wrapper {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .chairman-frame {
        right: -8px;
        top: 8px;
    }
    
    .chairman-title {
        font-size: 1.6rem;
    }
    
    .chairman-divider {
        margin: 1rem auto;
    }
    
    .chairman-actions {
        justify-content: center;
    }
    
    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }
    
    .event-date {
        align-self: center;
    }
    
    .event-meta {
        justify-content: center;
    }
    
    .district-card {
        flex: 0 0 calc(100% - 0rem);
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .mission-block {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
    
    .culture-block {
        flex-direction: column;
        text-align: center;
    }
    
    .culture-badge {
        margin-left: 0;
    }
    
    .search-container .search-field {
        font-size: 1.5rem;
    }
    
    .fallback-slider h2 {
        font-size: 2.6rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-padding-lg {
        padding: 4rem 0;
    }
    
    .section-padding-xl {
        padding: 5rem 0;
    }
    
    .section-full-width-alt .section-inner {
        padding: 0 1rem;
    }
    
    .section-contained .section-inner {
        padding: 0 1rem;
    }
    
    .support-inner {
        padding: 2.5rem 1.5rem;
    }
    
    .support-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-box {
        padding: 2rem 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .view-all-link {
        align-self: flex-start;
    }
    
    .mission-compact {
        padding: 1.5rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem !important;
    }
    
    .btn-primary {
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .chairman-grid {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .chairman-image-wrapper {
        max-width: 200px;
    }
    
    .chairman-title {
        font-size: 1.3rem;
    }
    
    .chairman-text {
        font-size: 0.95rem;
    }
    
    .chairman-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .chairman-actions .btn-primary,
    .chairman-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .support-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .support-buttons .btn-primary,
    .support-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        width: 100%;
        min-width: unset;
    }
    
    .newsletter-box {
        padding: 1.5rem;
    }
    
    .district-controls button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .news-body .news-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .custom-logo {
        max-height: 35px;
    }
    
    .site-title {
        font-size: 0.95rem;
    }
    
    .logo-icon {
        font-size: 1.3rem;
    }
    
    .beco-pagination ul li .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
        padding: 0 0.75rem;
        border-radius: var(--beco-radius-sm);
    }
    
    .beco-pagination ul li .page-numbers.prev,
    .beco-pagination ul li .page-numbers.next {
        padding: 0 1rem;
    }
    
    .beco-pagination ul li .page-numbers.prev span,
    .beco-pagination ul li .page-numbers.next span {
        display: none;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-padding-lg {
        padding: 3rem 0;
    }
    
    .section-padding-xl {
        padding: 4rem 0;
    }
    
    .section-full-width-alt .section-inner {
        padding: 0 0.75rem;
    }
    
    .section-contained .section-inner {
        padding: 0 0.75rem;
    }
    
    .mission-block {
        padding: 2rem 1.25rem;
        margin: 2.5rem 0;
    }
    
    .newsletter-box {
        padding: 1.5rem;
        margin: 2rem 0 1.5rem;
    }
    
    .district-card {
        padding: 1.5rem 1.25rem;
    }
    
    .events-wrapper {
        margin: 2rem 0 1.5rem;
    }
    
    .event-card {
        padding: 1rem 1.25rem;
    }
    
    .culture-block {
        padding: 1.5rem 1.25rem;
    }
    
    .mission-compact h3 {
        font-size: 1.3rem !important;
    }
    
    .mission-values {
        justify-content: center;
    }
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
    
    .admin-bar .header.scrolled {
        top: 46px;
    }
}

@media (min-width: 821px) {
    .search-toggle {
        display: flex;
    }
}

/* ============================================
   ARCHIVE / BLOG STYLES
   ============================================ */

.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
}

.archive-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 0.5rem;
}

.archive-description {
    color: var(--beco-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.post-card {
    background: var(--beco-white);
    border-radius: var(--beco-radius-lg);
    overflow: hidden;
    box-shadow: var(--beco-shadow-md);
    transition: all var(--beco-transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--beco-shadow-xl);
    border-color: rgba(106, 30, 42, 0.08);
}

.post-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--beco-neutral-100);
    flex-shrink: 0;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.post-format-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.post-card-image-placeholder {
    background: linear-gradient(135deg, var(--beco-primary), var(--beco-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.placeholder-content i {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.placeholder-content span {
    font-size: 0.9rem;
    font-weight: 500;
}

.post-card-content {
    padding: 1.5rem 1.8rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.post-card-categories .category-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.9rem;
    background: rgba(106, 30, 42, 0.08);
    color: var(--beco-primary);
    border-radius: var(--beco-radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
}

.post-card-categories .category-tag:hover {
    background: var(--beco-primary);
    color: white;
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.post-card-title a {
    color: var(--beco-text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-card-title a:hover {
    color: var(--beco-primary);
}

.post-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    font-size: 0.85rem;
    color: #8a9aa8;
    margin-bottom: 0.8rem;
}

.post-card-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.post-card-meta .meta-item i {
    font-size: 0.75rem;
    color: var(--beco-primary);
}

.post-card-meta .meta-item a {
    color: #8a9aa8;
    text-decoration: none;
    transition: color 0.2s;
}

.post-card-meta .meta-item a:hover {
    color: var(--beco-primary);
}

.post-card-excerpt {
    color: var(--beco-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid #f0ede8;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--beco-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    gap: 0.9rem;
    color: #8a2a3a;
}

.read-more-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

.post-card-tags {
    font-size: 0.8rem;
    color: #8a9aa8;
}

.post-card-tags i {
    color: var(--beco-primary);
    margin-right: 0.3rem;
}

.post-card-tags a {
    color: #8a9aa8;
    text-decoration: none;
    transition: color 0.2s;
}

.post-card-tags a:hover {
    color: var(--beco-primary);
}

/* No Posts Found */
.no-posts-found {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts-found i {
    font-size: 4rem;
    color: var(--beco-neutral-300);
    margin-bottom: 1rem;
}

.no-posts-found h3 {
    font-size: 1.5rem;
    color: var(--beco-text-dark);
    margin-bottom: 0.5rem;
}

.no-posts-found p {
    color: var(--beco-text-light);
    margin-bottom: 1.5rem;
}

/* ============================================
   SINGLE POST STYLES
   ============================================ */

.single-post {
    max-width: 820px;
    margin: 0 auto;
    padding: 1rem 0 2rem;
}

.single-post-header {
    margin-bottom: 2rem;
}

.single-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.single-post-categories .category-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.9rem;
    background: rgba(106, 30, 42, 0.08);
    color: var(--beco-primary);
    border-radius: var(--beco-radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-post-categories .category-tag:hover {
    background: var(--beco-primary);
    color: white;
}

.single-post-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--beco-text-dark);
    line-height: 1.2;
    margin: 0 0 1.2rem;
}

.single-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.8rem 0;
    border-top: 2px solid var(--beco-border);
    border-bottom: 2px solid var(--beco-border);
}

.single-post-meta .meta-left,
.single-post-meta .meta-right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
}

.single-post-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #8a9aa8;
}

.single-post-meta .meta-item i {
    color: var(--beco-primary);
    font-size: 0.8rem;
}

.single-post-meta .meta-item a {
    color: #8a9aa8;
    text-decoration: none;
    transition: color 0.2s;
}

.single-post-meta .meta-item a:hover {
    color: var(--beco-primary);
}

.single-post-featured {
    margin: 2rem 0;
    border-radius: var(--beco-radius-lg);
    overflow: hidden;
    box-shadow: var(--beco-shadow-md);
    position: relative;
}

.single-post-featured .featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-featured .featured-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
    text-align: center;
}

.single-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--beco-text-dark);
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.single-post-content h2 {
    font-size: 2rem;
}

.single-post-content h3 {
    font-size: 1.6rem;
}

.single-post-content p {
    margin-bottom: 1.2rem;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--beco-radius-md);
    margin: 1.5rem 0;
}

.single-post-content blockquote {
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--beco-neutral-50);
    border-left: 4px solid var(--beco-primary);
    border-radius: 0 var(--beco-radius-md) var(--beco-radius-md) 0;
    font-style: italic;
    color: var(--beco-text-light);
}

.single-post-content blockquote p {
    margin: 0;
}

.single-post-content .wp-block-image {
    margin: 2rem 0;
}

.single-post-content .wp-block-image figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: #8a9aa8;
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.single-post-content li {
    margin-bottom: 0.3rem;
}

.page-links {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--beco-neutral-50);
    border-radius: var(--beco-radius-md);
    text-align: center;
}

.page-links .page-link {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin: 0 0.2rem;
    background: var(--beco-white);
    border: 1px solid var(--beco-border);
    border-radius: 4px;
    text-decoration: none;
    color: var(--beco-text-dark);
}

.page-links .page-link:hover {
    background: var(--beco-primary);
    color: white;
    border-color: var(--beco-primary);
}

.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--beco-border);
    margin-top: 2rem;
}

.single-post-tags .tags-label {
    font-weight: 600;
    color: var(--beco-text-dark);
}

.single-post-tags a {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: var(--beco-neutral-100);
    color: var(--beco-text-light);
    border-radius: var(--beco-radius-full);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-post-tags a:hover {
    background: var(--beco-primary);
    color: white;
}

.single-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--beco-border);
    border-bottom: 2px solid var(--beco-border);
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.single-post-share .share-label {
    font-weight: 600;
    color: var(--beco-text-dark);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000000; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.email { background: #6c757d; }

.single-post-author {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--beco-neutral-50);
    border-radius: var(--beco-radius-lg);
    margin: 2rem 0;
    align-items: flex-start;
}

.single-post-author .author-avatar {
    flex-shrink: 0;
}

.single-post-author .author-avatar img {
    border-radius: 50%;
    border: 3px solid var(--beco-white);
    box-shadow: var(--beco-shadow-sm);
}

.single-post-author .author-info {
    flex: 1;
}

.single-post-author .author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
}

.single-post-author .author-name a {
    color: var(--beco-text-dark);
    text-decoration: none;
}

.single-post-author .author-name a:hover {
    color: var(--beco-primary);
}

.single-post-author .author-title {
    color: var(--beco-primary);
    font-weight: 500;
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
}

.single-post-author .author-bio {
    color: var(--beco-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.8rem;
}

.single-post-author .author-social {
    display: flex;
    gap: 0.5rem;
}

.single-post-author .author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--beco-white);
    color: #8a9aa8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-post-author .author-social a:hover {
    background: var(--beco-primary);
    color: white;
    transform: translateY(-2px);
}

.single-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--beco-border);
    border-bottom: 2px solid var(--beco-border);
    margin: 2rem 0;
}

.single-post-navigation .nav-previous,
.single-post-navigation .nav-next {
    flex: 1;
    max-width: 45%;
}

.single-post-navigation .nav-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-post-navigation .nav-link:hover .nav-title {
    color: var(--beco-primary);
}

.single-post-navigation .nav-label {
    display: block;
    font-size: 0.8rem;
    color: #8a9aa8;
    margin-bottom: 0.2rem;
}

.single-post-navigation .nav-title {
    display: block;
    font-weight: 600;
    color: var(--beco-text-dark);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.single-post-navigation .nav-next {
    text-align: right;
}

/* Related Posts */
.related-posts {
    margin: 2.5rem 0;
}

.related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-title i {
    color: var(--beco-primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: var(--beco-white);
    border-radius: var(--beco-radius-md);
    overflow: hidden;
    box-shadow: var(--beco-shadow-sm);
    transition: all var(--beco-transition-base);
    border: 1px solid var(--beco-border);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--beco-shadow-md);
}

.related-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-content {
    padding: 1rem 1.2rem 1.2rem;
}

.related-card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.3rem;
    line-height: 1.3;
}

.related-card-content h4 a {
    color: var(--beco-text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.related-card-content h4 a:hover {
    color: var(--beco-primary);
}

.related-card-meta {
    font-size: 0.8rem;
    color: #8a9aa8;
}

.related-card-meta i {
    color: var(--beco-primary);
}

/* ============================================
   BREADCRUMB STYLES
   ============================================ */
.beco-breadcrumb {
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    background: var(--beco-white);
    border-radius: var(--beco-radius-sm);
    border: 1px solid var(--beco-border);
    box-shadow: var(--beco-shadow-xs);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    color: var(--beco-text-light);
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--beco-neutral-400);
    font-weight: 300;
}

.breadcrumb-list li a {
    color: var(--beco-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.breadcrumb-list li a:hover {
    color: var(--beco-primary-dark);
    text-decoration: underline;
}

.breadcrumb-list li a i {
    font-size: 0.8rem;
}

.breadcrumb-list li.current {
    color: var(--beco-text-dark);
    font-weight: 500;
}

/* ============================================
   COMMENT STYLES
   ============================================ */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--beco-border);
}

.comments-title,
.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 1.5rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.comment-list .comment {
    margin-bottom: 1.5rem;
}

.comment-body {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--beco-white);
    border-radius: var(--beco-radius-md);
    box-shadow: var(--beco-shadow-sm);
    border: 1px solid var(--beco-border);
}

.comment-author-avatar {
    flex-shrink: 0;
}

.comment-author-avatar img {
    border-radius: 50%;
    border: 3px solid var(--beco-neutral-100);
}

.comment-content-wrapper {
    flex: 1;
    min-width: 0;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.comment-author {
    font-weight: 600;
    color: var(--beco-text-dark);
}

.comment-author a {
    color: var(--beco-text-dark);
    text-decoration: none;
}

.comment-author a:hover {
    color: var(--beco-primary);
}

.comment-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.15rem 0.6rem;
    border-radius: var(--beco-radius-full);
}

.author-badge {
    background: var(--beco-primary);
    color: white;
}

.comment-date {
    color: var(--beco-text-light);
    font-size: 0.8rem;
}

.comment-date a {
    color: inherit;
    text-decoration: none;
}

.comment-date a:hover {
    color: var(--beco-primary);
}

.comment-date i {
    margin-right: 0.2rem;
}

.comment-awaiting-moderation {
    color: #c9a87c;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    background: rgba(201, 168, 124, 0.1);
    border-radius: var(--beco-radius-sm);
    display: inline-block;
}

.comment-content {
    color: var(--beco-text-dark);
    line-height: 1.7;
    margin: 0.5rem 0;
}

.comment-content p {
    margin-bottom: 0.5rem;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--beco-border);
}

.comment-actions a {
    color: var(--beco-text-light);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.comment-actions a:hover {
    color: var(--beco-primary);
}

.comment-actions a i {
    font-size: 0.75rem;
}

/* Comment Children */
.comment-list .children {
    list-style: none;
    padding-left: 2.5rem;
    margin-top: 1rem;
}

.comment-list .children .comment-body {
    background: var(--beco-neutral-50);
    border-color: var(--beco-border);
}

/* Comment Form */
.comment-respond {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--beco-white);
    border-radius: var(--beco-radius-lg);
    border: 1px solid var(--beco-border);
    box-shadow: var(--beco-shadow-sm);
}

.comment-respond .comment-reply-title {
    margin-top: 0;
}

.comment-notes {
    color: var(--beco-text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-form-group {
    margin-bottom: 1rem;
}

.comment-form-group label {
    display: block;
    font-weight: 600;
    color: var(--beco-text-dark);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.comment-form-group label .required {
    color: #c0392b;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid #d4d0c8;
    border-radius: var(--beco-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--beco-white);
    color: var(--beco-text-dark);
}

.comment-form-group input:focus,
.comment-form-group textarea:focus {
    border-color: var(--beco-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 30, 42, 0.1);
}

.comment-form-textarea {
    margin-bottom: 1rem;
}

.comment-form-textarea label {
    display: block;
    font-weight: 600;
    color: var(--beco-text-dark);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.comment-form-textarea label .required {
    color: #c0392b;
}

.comment-form-textarea textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid #d4d0c8;
    border-radius: var(--beco-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--beco-white);
    color: var(--beco-text-dark);
    resize: vertical;
    min-height: 120px;
}

.comment-form-textarea textarea:focus {
    border-color: var(--beco-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 30, 42, 0.1);
}

.comment-submit {
    margin-top: 0.5rem;
}

.logged-in-as {
    color: var(--beco-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.logged-in-as a {
    color: var(--beco-primary);
    text-decoration: none;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

.no-comments {
    text-align: center;
    color: var(--beco-text-light);
    padding: 1rem;
}

/* Comment Navigation */
.comment-navigation {
    margin: 1.5rem 0;
}

.comment-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.comment-navigation .nav-links a {
    color: var(--beco-primary);
    text-decoration: none;
    font-weight: 500;
}

.comment-navigation .nav-links a:hover {
    text-decoration: underline;
}


/* ============================================
   RESPONSIVE - SINGLE POST
   ============================================ */

@media (max-width: 1024px) {
    .single-layout-wrapper.has-sidebar {
        flex-direction: column;
    }
    
    .single-sidebar {
        flex: 1 1 100%;
        max-width: 100%;
        position: static;
        width: 100%;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid var(--beco-border);
    }
}

@media (max-width: 820px) {
    .single-layout-wrapper {
        gap: 2rem;
    }
    
    .single-post {
        padding: 0;
    }
}

/* ============================================
   SINGLE POST WIDGET STYLES
   ============================================ */

/* Sidebar Widgets */
.single-sidebar .widget,
.single-sidebar-widget {
    background: var(--beco-white);
    padding: 1.5rem;
    border-radius: var(--beco-radius-md);
    border: 1px solid var(--beco-border);
    box-shadow: var(--beco-shadow-sm);
    margin-bottom: 1.5rem;
}

.single-sidebar .widget-title,
.single-sidebar-widget .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--beco-border);
    position: relative;
}

.single-sidebar .widget-title::after,
.single-sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-accent));
    border-radius: 2px;
}

.single-sidebar .widget ul,
.single-sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-sidebar .widget ul li,
.single-sidebar-widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--beco-border);
}

.single-sidebar .widget ul li:last-child,
.single-sidebar-widget ul li:last-child {
    border-bottom: none;
}

.single-sidebar .widget ul li a,
.single-sidebar-widget ul li a {
    color: var(--beco-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-sidebar .widget ul li a:hover,
.single-sidebar-widget ul li a:hover {
    color: var(--beco-primary);
}

/* After Content Widget */
.after-content-widget {
    background: var(--beco-white);
    padding: 2rem;
    border-radius: var(--beco-radius-lg);
    border: 1px solid var(--beco-border);
    box-shadow: var(--beco-shadow-sm);
    margin-bottom: 1.5rem;
}

.after-content-widget .widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--beco-border);
    position: relative;
}

.after-content-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-accent));
    border-radius: 2px;
}

/* ============================================
   RESPONSIVE - SINGLE POST LAYOUT
   ============================================ */

@media (max-width: 1024px) {
    .single-layout-wrapper.has-sidebar {
        flex-direction: column;
    }
    
    .single-sidebar {
        flex: 1 1 100%;
        max-width: 100%;
        position: static;
        width: 100%;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid var(--beco-border);
    }
    
    .single-sidebar .widget {
        padding: 1.25rem;
    }
}

@media (max-width: 820px) {
    .single-layout-wrapper {
        gap: 2rem;
    }
    
    .single-sidebar .widget {
        padding: 1rem;
    }
    
    .single-post {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .single-sidebar .widget {
        padding: 0.8rem;
    }
    
    .after-content-widget {
        padding: 1.5rem 1rem;
    }
}

/* ============================================
   SINGLE POST WIDGET STYLES
   ============================================ */

/* Single Sidebar Widget */
.single-sidebar-widget {
    background: var(--beco-white);
    padding: 1.5rem 1.5rem 2rem;
    border-radius: var(--beco-radius-lg);
    border: 1px solid var(--beco-border);
    box-shadow: var(--beco-shadow-sm);
    margin-bottom: 1.5rem;
}

.single-sidebar-widget .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--beco-border);
    position: relative;
}

.single-sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-accent));
    border-radius: 2px;
}

.single-sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-sidebar-widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--beco-border);
}

.single-sidebar-widget ul li:last-child {
    border-bottom: none;
}

.single-sidebar-widget ul li a {
    color: var(--beco-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-sidebar-widget ul li a:hover {
    color: var(--beco-primary);
}

/* After Content Widget */
.after-content-widgets {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--beco-border);
}

.after-content-widget {
    background: var(--beco-white);
    padding: 2rem;
    border-radius: var(--beco-radius-lg);
    border: 1px solid var(--beco-border);
    box-shadow: var(--beco-shadow-sm);
    margin-bottom: 1.5rem;
}

.after-content-widget .widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--beco-border);
    position: relative;
}

.after-content-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--beco-primary), var(--beco-accent));
    border-radius: 2px;
}

/* ============================================
   RESPONSIVE - SIDEBAR
   ============================================ */

@media (max-width: 1024px) {
    .single-layout-with-sidebar {
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 820px) {
    .single-layout-with-sidebar {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .single-layout-full {
        max-width: 100%;
    }
    
    .single-sidebar {
        position: static;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid var(--beco-border);
    }
    
    .single-sidebar-widget {
        margin-bottom: 1rem;
    }
    
    .single-post {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .single-sidebar-widget {
        padding: 1rem 1rem 1.5rem;
    }
    
    .after-content-widget {
        padding: 1.5rem 1rem;
    }
}

/* ============================================
   MEGA MENU STYLES
   ============================================ */

/* Desktop Mega Menu */
.nav-links .mega-menu-parent {
    position: relative;
}

.nav-links .mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 800px;
    max-width: 90vw;
    padding: 2rem;
    background: var(--beco-white);
    border-radius: var(--beco-radius-lg);
    box-shadow: var(--beco-shadow-2xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--beco-transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.header.scrolled .nav-links .mega-menu {
    background: rgba(26, 18, 20, 0.95);
    backdrop-filter: blur(14px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.06);
}

.nav-links .mega-menu-parent:hover .mega-menu,
.nav-links .mega-menu-parent:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Mega Menu Columns */
.nav-links .mega-menu-column {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links .mega-menu-column > .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    padding: 0;
    border: none;
    min-width: auto;
}

.nav-links .mega-menu-column > .sub-menu > .menu-item-has-children > a {
    font-weight: 700;
    color: var(--beco-primary);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--beco-border);
    margin-bottom: 0.5rem;
    display: block;
}

.header.scrolled .mega-menu-column > .sub-menu > .menu-item-has-children > a {
    color: var(--beco-accent);
}

.nav-links .mega-menu-column > .sub-menu > .menu-item-has-children > .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    padding: 0;
    border: none;
    min-width: auto;
}

.nav-links .mega-menu-column > .sub-menu > .menu-item-has-children > .sub-menu a {
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
    color: var(--beco-text-light);
    transition: all var(--beco-transition-fast);
    border-radius: var(--beco-radius-sm);
}

.nav-links .mega-menu-column > .sub-menu > .menu-item-has-children > .sub-menu a:hover {
    background: var(--beco-neutral-100);
    color: var(--beco-primary);
    padding-left: 1rem;
}

.header.scrolled .mega-menu-column > .sub-menu > .menu-item-has-children > .sub-menu a {
    color: rgba(255, 255, 255, 0.7);
}

.header.scrolled .mega-menu-column > .sub-menu > .menu-item-has-children > .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--beco-accent);
}

/* Mega Menu Icons */
.nav-links .mega-menu-column .menu-item-has-children > a::before {
    content: '';
    display: none;
}

/* Mega Menu Responsive */
@media (max-width: 1024px) {
    .nav-links .mega-menu {
        width: 600px;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        padding: 1.5rem;
    }
}

@media (max-width: 820px) {
    .nav-links .mega-menu {
        display: none;
    }
}

/* ============================================
   ENHANCED DROPDOWN STYLES
   ============================================ */

/* Regular dropdown for non-mega items */
.nav-links .menu-item-has-children:not(.mega-menu-parent) {
    position: relative;
}

.nav-links .menu-item-has-children:not(.mega-menu-parent) > .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    padding: 0.5rem;
    background: var(--beco-white);
    border-radius: var(--beco-radius-md);
    box-shadow: var(--beco-shadow-2xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--beco-transition-base);
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 1000;
}

.header.scrolled .nav-links .menu-item-has-children:not(.mega-menu-parent) > .sub-menu {
    background: rgba(26, 18, 20, 0.95);
    backdrop-filter: blur(14px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.06);
}

.nav-links .menu-item-has-children:not(.mega-menu-parent):hover > .sub-menu,
.nav-links .menu-item-has-children:not(.mega-menu-parent):focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Nested sub-menu */
.nav-links .sub-menu .menu-item-has-children {
    position: relative;
}

.nav-links .sub-menu .menu-item-has-children > .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(-8px) translateY(0);
    min-width: 200px;
    padding: 0.5rem;
    background: var(--beco-white);
    border-radius: var(--beco-radius-md);
    box-shadow: var(--beco-shadow-2xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--beco-transition-base);
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 1001;
}

.header.scrolled .nav-links .sub-menu .menu-item-has-children > .sub-menu {
    background: rgba(26, 18, 20, 0.95);
    backdrop-filter: blur(14px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.06);
}

.nav-links .sub-menu .menu-item-has-children:hover > .sub-menu,
.nav-links .sub-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) translateY(0);
}

/* Sub-menu items */
.nav-links .sub-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--beco-text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--beco-radius-sm);
    transition: all var(--beco-transition-fast);
    white-space: nowrap;
}

.header.scrolled .nav-links .sub-menu a {
    color: #e8e0d8;
}

.nav-links .sub-menu a:hover {
    background: var(--beco-neutral-100);
    color: var(--beco-primary);
}

.header.scrolled .nav-links .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--beco-accent);
}

/* Sub-menu icon for nested items */
.nav-links .sub-menu .sub-menu-icon {
    font-size: 0.6rem;
    margin-left: 0.2rem;
}

/* ============================================
   MOBILE MEGA MENU ENHANCEMENTS
   ============================================ */

.mobile-menu-list .menu-item-has-children {
    position: relative;
}

.mobile-menu-list .sub-menu {
    display: none;
    padding-left: 1.5rem;
    list-style: none;
}

.mobile-menu-list .sub-menu.open {
    display: block;
}

.mobile-menu-list .sub-menu a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    opacity: 0.8;
}

.mobile-menu-list .sub-menu .sub-menu {
    padding-left: 1rem;
}

.mobile-menu-list .sub-menu .sub-menu a {
    font-size: 0.85rem;
    padding: 0.3rem 1rem;
    opacity: 0.7;
}

/* Mobile dropdown toggle for nested items */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.25s ease;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.mobile-dropdown-toggle:hover {
    background: rgba(201, 168, 124, 0.12);
    color: #fff;
}

.mobile-dropdown-toggle i:first-child {
    width: 24px;
    color: var(--beco-accent);
    font-size: 1.1rem;
}

.mobile-dropdown-toggle .arrow-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.mobile-dropdown-toggle.open .arrow-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    padding-left: 0.5rem;
}

.mobile-dropdown-content.open {
    max-height: 800px;
}

.mobile-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem 0.6rem 2.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-dropdown-content a:hover {
    color: #fff;
    background: rgba(201, 168, 124, 0.08);
}

.mobile-dropdown-content .sub-dropdown-content {
    padding-left: 1rem;
}

.mobile-dropdown-content .sub-dropdown-content a {
    padding-left: 3.8rem;
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE MEGA MENU
   ============================================ */

@media (max-width: 1024px) {
    .nav-links .mega-menu {
        width: 600px;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        padding: 1.5rem;
    }
}

@media (max-width: 820px) {
    .nav-links .mega-menu,
    .nav-links .menu-item-has-children:not(.mega-menu-parent) > .sub-menu,
    .nav-links .sub-menu .menu-item-has-children > .sub-menu {
        display: none;
    }
    
    /* Mobile menu handles all dropdowns */
    .mobile-menu-list .sub-menu {
        display: none;
    }
    
    .mobile-menu-list .sub-menu.open {
        display: block;
    }
}

/* ============================================
   LOAD MORE STYLES
   ============================================ */

.load-more-container {
    text-align: center;
    margin: 3rem 0 2rem;
}

.load-more-btn {
    min-width: 200px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.load-more-btn .fa-spinner {
    margin-right: 0.5rem;
}

/* Load More Items Animation */
.load-more-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.load-more-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.filter-label {
    font-weight: 600;
    color: var(--beco-text-dark);
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.filter-btn {
    padding: 0.4rem 1.2rem;
    background: var(--beco-white);
    border: 2px solid var(--beco-border);
    border-radius: var(--beco-radius-full);
    color: var(--beco-text-light);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--beco-primary);
    color: var(--beco-primary);
}

.filter-btn.active {
    background: var(--beco-primary);
    border-color: var(--beco-primary);
    color: white;
}

.filter-btn.active:hover {
    background: var(--beco-primary-dark);
    border-color: var(--beco-primary-dark);
}

/* No more posts message */
.no-more-posts {
    text-align: center;
    padding: 2rem;
    color: var(--beco-text-light);
}

/* ============================================
   RESPONSIVE LOAD MORE
   ============================================ */

@media (max-width: 480px) {
    .load-more-btn {
        width: 100%;
        min-width: unset;
    }
    
    .category-filter {
        gap: 0.3rem;
    }
    
    .filter-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 820px) {
    .archive-title {
        font-size: 2.2rem;
    }
    
    .single-post-title {
        font-size: 2.2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .single-post-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .single-post-navigation {
        flex-direction: column;
        align-items: stretch;
    }
    
    .single-post-navigation .nav-previous,
    .single-post-navigation .nav-next {
        max-width: 100%;
    }
    
    .single-post-navigation .nav-next {
        text-align: left;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .single-post-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .single-post-author .author-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .archive-title {
        font-size: 1.8rem;
    }
    
    .single-post-title {
        font-size: 1.8rem;
    }
    
    .single-post-content {
        font-size: 1rem;
    }
    
    .single-post-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .post-card-content {
        padding: 1.2rem 1.2rem 1.5rem;
    }
}

/* ============================================
   BREADCRUMB & COMMENTS - RESPONSIVE
   ============================================ */
@media (max-width: 820px) {
    .comment-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .comment-author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-list .children {
        padding-left: 1rem;
    }
    
    .comment-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .comment-respond {
        padding: 1.5rem;
    }
    
    .comments-title,
    .comment-reply-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .beco-breadcrumb {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb-list li {
        font-size: 0.8rem;
    }
    
    .comment-body {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .comment-author-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .comment-respond {
        padding: 1rem;
    }
    
    .comment-actions {
        flex-wrap: wrap;
    }
}

/* ============================================
   FORCE FOOTER FULL WIDTH - OVERRIDE BODY CONSTRAINT
   ============================================ */

/* Remove body constraint that affects footer */
body {
    max-width: 100% !important;
}

/* Force footer to be full width */
.footer {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

/* Footer widgets - centered content */
.footer-widgets {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Footer bottom - centered content */
.footer-bottom {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}


/* ============================================
   CATEGORY ARCHIVE STYLES
   ============================================ */

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--beco-primary);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: var(--beco-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.category-badge i {
    font-size: 0.8rem;
}

.category-title {
    margin-bottom: 0.5rem;
}

.category-description {
    max-width: 700px;
    margin-bottom: 0.5rem;
}

.category-post-count {
    color: var(--beco-text-light);
    font-size: 0.95rem;
}

.category-post-count i {
    color: var(--beco-primary);
    margin-right: 0.3rem;
}

/* Sub Categories */
.sub-categories-wrapper {
    margin: 2.5rem 0 3rem;
    padding: 2rem;
    background: var(--beco-white);
    border-radius: var(--beco-radius-lg);
    border: 1px solid var(--beco-border);
    box-shadow: var(--beco-shadow-sm);
}

.sub-categories-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--beco-text-dark);
    margin-bottom: 1.2rem;
}

.sub-categories-title i {
    color: var(--beco-primary);
    margin-right: 0.5rem;
}

.sub-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.sub-category-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    background: var(--beco-neutral-50);
    border-radius: var(--beco-radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sub-category-item:hover {
    background: var(--beco-white);
    border-color: var(--beco-primary);
    transform: translateY(-2px);
    box-shadow: var(--beco-shadow-sm);
}

.sub-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--beco-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.sub-category-name {
    color: var(--beco-text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    flex: 1;
}

.sub-category-count {
    font-size: 0.7rem;
    color: var(--beco-text-light);
    background: var(--beco-neutral-200);
    padding: 0.1rem 0.5rem;
    border-radius: var(--beco-radius-full);
}

/* Post Category Tag on image */
.post-category-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 2;
}

.post-category-tag a {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: var(--beco-primary);
    color: white;
    border-radius: var(--beco-radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.post-category-tag a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Category Responsive */
@media (max-width: 820px) {
    .sub-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 480px) {
    .sub-categories-wrapper {
        padding: 1rem;
    }
    
    .sub-categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .sub-category-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .sub-category-icon {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }
    
    .category-badge {
        font-size: 0.7rem;
        padding: 0.2rem 1rem;
    }
}

/* ============================================
   BECO ADVANCED POSTS SHORTCODE STYLES
   ============================================ */

/* Wrapper */
.beco-advanced-posts-wrap {
    margin: 2rem 0;
    padding: 0;
}

/* Header */
.beco-posts-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.beco-posts-header i {
    font-size: 1.8rem;
    color: var(--beco-primary, #6a1e2a);
}

.beco-posts-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--beco-text-dark, #1e2b3c);
    margin: 0;
    padding: 0;
}

/* Grid */
.beco-posts-grid {
    display: grid;
    gap: 2rem;
}

/* Column Classes */
.beco-col-1 {
    grid-template-columns: 1fr;
}
.beco-col-2 {
    grid-template-columns: repeat(2, 1fr);
}
.beco-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.beco-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Post Item */
.beco-post-item {
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Card Base */
.beco-post-card {
    background: var(--beco-white, #ffffff);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--beco-border, rgba(200, 180, 140, 0.12));
}

.beco-post-card.has-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.beco-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Card Styles - Modern */
.beco-card-modern .beco-post-card {
    border-radius: 16px;
}

.beco-card-modern .beco-post-image-wrap {
    position: relative;
    overflow: hidden;
}

.beco-card-modern .beco-post-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.beco-card-modern .beco-post-card:hover .beco-post-image-wrap img {
    transform: scale(1.05);
}

.beco-card-modern .beco-post-content {
    padding: 1.5rem 1.5rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Card Styles - Minimal */
.beco-card-minimal .beco-post-card {
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.beco-card-minimal .beco-post-card:hover {
    transform: none;
    box-shadow: none;
}

.beco-card-minimal .beco-post-content {
    padding: 1rem 0;
}

.beco-card-minimal .beco-post-image-wrap {
    border-radius: 12px;
    overflow: hidden;
}

/* Card Styles - Classic */
.beco-card-classic .beco-post-card {
    border-radius: 8px;
    border: 1px solid var(--beco-border, rgba(200, 180, 140, 0.12));
}

.beco-card-classic .beco-post-card:hover {
    border-color: var(--beco-primary, #6a1e2a);
}

.beco-card-classic .beco-post-image-wrap {
    position: relative;
    overflow: hidden;
}

.beco-card-classic .beco-post-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beco-card-classic .beco-post-content {
    padding: 1.2rem 1.2rem 1.5rem;
}

/* Card Styles - Clean */
.beco-card-clean .beco-post-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.beco-card-clean .beco-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.beco-card-clean .beco-post-image-wrap {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.beco-card-clean .beco-post-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beco-card-clean .beco-post-content {
    padding: 1.5rem 1.5rem 1.8rem;
}

/* Image */
.beco-post-image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--beco-neutral-100, #f0ede8);
    flex-shrink: 0;
}

.beco-post-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.beco-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Badge */
.beco-post-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--beco-primary, #6a1e2a);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

/* Content */
.beco-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Categories */
.beco-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.beco-post-cat {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.15rem 0.7rem;
    background: rgba(106, 30, 42, 0.08);
    color: var(--beco-primary, #6a1e2a);
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.beco-post-cat:hover {
    background: var(--beco-primary, #6a1e2a);
    color: white;
}

.beco-post-cat-more {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    color: var(--beco-text-light, #4d5d6c);
}

/* Title */
.beco-post-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.beco-post-title a {
    color: var(--beco-text-dark, #1e2b3c);
    text-decoration: none;
    transition: color 0.2s ease;
}

.beco-post-title a:hover {
    color: var(--beco-primary, #6a1e2a);
}

/* Meta */
.beco-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--beco-text-light, #4d5d6c);
    margin-bottom: 0.6rem;
}

.beco-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.beco-post-meta i {
    font-size: 0.7rem;
    color: var(--beco-primary, #6a1e2a);
}

.beco-post-meta a {
    color: var(--beco-text-light, #4d5d6c);
    text-decoration: none;
    transition: color 0.2s ease;
}

.beco-post-meta a:hover {
    color: var(--beco-primary, #6a1e2a);
}

/* Excerpt */
.beco-post-excerpt {
    color: var(--beco-text-light, #4d5d6c);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    flex: 1;
}

/* Tags */
.beco-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.beco-post-tag {
    font-size: 0.75rem;
    color: var(--beco-text-light, #4d5d6c);
    text-decoration: none;
    transition: color 0.2s ease;
}

.beco-post-tag:hover {
    color: var(--beco-primary, #6a1e2a);
}

/* Read More */
.beco-post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--beco-primary, #6a1e2a);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.beco-post-read-more:hover {
    gap: 0.9rem;
    color: var(--beco-primary-dark, #4a1220);
}

.beco-post-read-more i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.beco-post-read-more:hover i {
    transform: translateX(4px);
}

/* Animations */
@keyframes becoFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes becoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes becoScaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.beco-animate-fade-up {
    animation: becoFadeUp 0.6s ease forwards;
}

.beco-animate-fade-in {
    animation: becoFadeIn 0.5s ease forwards;
}

.beco-animate-scale-up {
    animation: becoScaleUp 0.5s ease forwards;
}

/* Empty State */
.beco-posts-empty {
    text-align: center;
    padding: 3rem 2rem;
}

.beco-posts-empty i {
    font-size: 3rem;
    color: var(--beco-neutral-300, #d4d0c8);
    display: block;
    margin-bottom: 1rem;
}

.beco-posts-empty p {
    color: var(--beco-text-light, #4d5d6c);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .beco-col-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .beco-col-3,
    .beco-col-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beco-posts-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .beco-col-2,
    .beco-col-3,
    .beco-col-4 {
        grid-template-columns: 1fr;
    }
    
    .beco-posts-header i {
        font-size: 1.4rem;
    }
    
    .beco-posts-title {
        font-size: 1.3rem;
    }
    
    .beco-post-title {
        font-size: 1rem;
    }
    
    .beco-post-content {
        padding: 1rem 1rem 1.2rem;
    }
}

.beco-news-grid,
.posts-grid,
.beco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .beco-news-grid,
    .posts-grid,
    .beco-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .beco-news-grid,
    .posts-grid,
    .beco-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* ============================================
   ENHANCED SLIDER STYLES
   ============================================ */

.enhanced-slider {
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    position: relative !important;
    background: #1a1214;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.enhanced-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
}

.enhanced-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.enhanced-slide.leaving {
    opacity: 0;
    transform: scale(1.1);
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
}

.slide-content-inner {
    max-width: 700px;
    opacity: 0;
    transform: translateX(-60px) translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.3s;
}

.enhanced-slide.active .slide-content-inner {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Slide Badge */
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border: 2px solid;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    transition-delay: 0.5s;
}

.enhanced-slide.active .slide-badge {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge i {
    font-size: 0.6rem;
}

/* Slide Title */
.slide-title {
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
    transition-delay: 0.6s;
}

.enhanced-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Divider */
.slide-divider {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
    transition-delay: 0.7s;
}

.enhanced-slide.active .slide-divider {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Subtitle */
.slide-subtitle {
    font-weight: 400;
    line-height: 1.6;
    max-width: 550px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    margin: 0 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    transition-delay: 0.8s;
}

.enhanced-slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    transition-delay: 0.9s;
}

.enhanced-slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Buttons */
.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.slide-btn-primary {
    background: #ffffff;
    color: #6a1e2a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.slide-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slide-btn-secondary {
    background: transparent;
    border: 2px solid;
    padding: 0.8rem 2.2rem;
}

.slide-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slider-control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.slider-dot:hover {
    transform: scale(1.1);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3.5rem !important;
    }
    .slide-subtitle {
        font-size: 1.3rem !important;
    }
    .slide-content-inner {
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .slide-title {
        font-size: 2.8rem !important;
    }
    .slide-subtitle {
        font-size: 1.1rem !important;
    }
    .slide-actions {
        flex-direction: column;
        width: 100%;
    }
    .slide-btn {
        width: 100%;
        justify-content: center;
    }
    .slider-controls {
        bottom: 1.5rem;
        gap: 1rem;
    }
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2.2rem !important;
    }
    .slide-subtitle {
        font-size: 1rem !important;
    }
    .slide-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }
    .slide-content {
        padding: 1rem;
    }
    .slider-control {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    .slider-dots {
        gap: 0.5rem;
    }
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Slide 1 specific */
.slide-1 .slide-content-inner {
    text-align: left;
}

/* Slide 2 specific */
.slide-2 .slide-content-inner {
    text-align: center;
}

.slide-2 .slide-divider {
    margin-left: auto;
    margin-right: auto;
}

.slide-2 .slide-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.slide-2 .slide-actions {
    justify-content: center;
}

/* Slide 3 specific */
.slide-3 .slide-content-inner {
    text-align: right;
}

.slide-3 .slide-divider {
    margin-left: auto;
    margin-right: 0;
}

.slide-3 .slide-subtitle {
    margin-left: auto;
    margin-right: 0;
}

.slide-3 .slide-actions {
    justify-content: flex-end;
}

@media (max-width: 820px) {
    .slide-1 .slide-content-inner,
    .slide-2 .slide-content-inner,
    .slide-3 .slide-content-inner {
        text-align: center;
    }
    .slide-1 .slide-divider,
    .slide-3 .slide-divider {
        margin-left: auto;
        margin-right: auto;
    }
    .slide-1 .slide-subtitle,
    .slide-3 .slide-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .slide-1 .slide-actions,
    .slide-3 .slide-actions {
        justify-content: center;
    }
}

/* ============================================
   ANNOUNCEMENT POPUP STYLES
   ============================================ */

.announcement-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.5s ease;
}

.popup-container {
    position: relative;
    z-index: 2;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    animation: popUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 2.5rem 2.5rem 2rem;
}

/* Popup Close Button */
.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
    color: #c0392b;
}

/* Popup Icon */
.popup-icon-wrapper {
    text-align: center;
    margin-bottom: 0.5rem;
}

.popup-icon {
    font-size: 4rem;
    display: inline-block;
    animation: iconBounce 1s ease infinite;
}

/* Popup Image */
.popup-image {
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.popup-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Popup Title */
.popup-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e2b3c;
    text-align: center;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

/* Popup Text */
.popup-text {
    color: #4d5d6c;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin: 0 0 1.5rem;
}

.popup-text p {
    margin-bottom: 0.5rem;
}

/* Popup Button */
.popup-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.popup-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.popup-button:hover i {
    transform: translateX(4px);
}

/* Popup Footer */
.popup-footer-text {
    text-align: center;
    font-size: 0.8rem;
    color: #b8b2a8;
    margin: 1rem 0 0;
}

.popup-footer-text i {
    color: #6a1e2a;
}

/* ============================================
   POPUP STYLE VARIATIONS
   ============================================ */

/* Celebrate */
.popup-celebrate .popup-container {
    border-top: 6px solid #f39c12;
}
.popup-celebrate .popup-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.3);
}
.popup-celebrate .popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(243, 156, 18, 0.4);
}

/* Congratulations */
.popup-congrats .popup-container {
    border-top: 6px solid #2ecc71;
}
.popup-congrats .popup-button {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.3);
}
.popup-congrats .popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(46, 204, 113, 0.4);
}

/* Announcement */
.popup-announce .popup-container {
    border-top: 6px solid #3498db;
}
.popup-announce .popup-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
}
.popup-announce .popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(52, 152, 219, 0.4);
}

/* Event */
.popup-event .popup-container {
    border-top: 6px solid #9b59b6;
}
.popup-event .popup-button {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: #fff;
    box-shadow: 0 8px 24px rgba(155, 89, 182, 0.3);
}
.popup-event .popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(155, 89, 182, 0.4);
}

/* Success */
.popup-success .popup-container {
    border-top: 6px solid #2ecc71;
}
.popup-success .popup-button {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: #fff;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}
.popup-success .popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(39, 174, 96, 0.4);
}

/* Info */
.popup-info .popup-container {
    border-top: 6px solid #3498db;
}
.popup-info .popup-button {
    background: linear-gradient(135deg, #3498db, #2471a3);
    color: #fff;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
}
.popup-info .popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(52, 152, 219, 0.4);
}

/* Warning */
.popup-warning .popup-container {
    border-top: 6px solid #e74c3c;
}
.popup-warning .popup-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
}
.popup-warning .popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(231, 76, 60, 0.4);
}

/* Special */
.popup-special .popup-container {
    border-top: 6px solid linear-gradient(90deg, #f39c12, #e74c3c, #9b59b6);
    background: linear-gradient(145deg, #1a1214, #2a1a1e);
    color: #fff;
}
.popup-special .popup-title {
    color: #fff;
}
.popup-special .popup-text {
    color: rgba(255, 255, 255, 0.8);
}
.popup-special .popup-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.3);
}
.popup-special .popup-footer-text {
    color: rgba(255, 255, 255, 0.4);
}
.popup-special .popup-close {
    color: rgba(255, 255, 255, 0.6);
}
.popup-special .popup-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(-5deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 820px) {
    .popup-container {
        padding: 1.8rem 1.5rem 1.5rem;
    }
    
    .popup-image {
        margin: -1.8rem -1.5rem 1.2rem -1.5rem;
    }
    
    .popup-image img {
        height: 160px;
    }
    
    .popup-title {
        font-size: 1.4rem;
    }
    
    .popup-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .popup-container {
        padding: 1.2rem 1rem 1.2rem;
        border-radius: 16px;
    }
    
    .popup-image {
        margin: -1.2rem -1rem 1rem -1rem;
    }
    
    .popup-image img {
        height: 120px;
    }
    
    .popup-title {
        font-size: 1.2rem;
    }
    
    .popup-text {
        font-size: 0.9rem;
    }
    
    .popup-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .popup-close {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: 0.6rem;
        right: 0.6rem;
    }
}