/* ========================================
   Journal of Himalayan Green Print
   Modern Responsive Footer CSS
   ======================================== */

/* Footer Variables (uses same variables as header/sidebar) */
:root {
    /* Color Palette */
    --deep-forest: #1B4332;
    --mountain-sage: #52796F;
    --glacier-blue: #84A9AC;
    --terracotta: #D4A574;
    --himalayan-snow: #F8F9FA;
    --charcoal: #2D3E40;
    --light-sage: #95B8A8;
    --accent-green: #40916C;

    /* Typography */
    --font-display: 'Crimson Text', 'Georgia', serif;
    --font-body: 'Literata', 'Georgia', serif;
    --font-ui: 'DM Sans', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 4px 16px rgba(27, 67, 50, 0.12);
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.journal-footer {
    background: linear-gradient(180deg, #265939 0%, #1e462d 100%);
    color: var(--himalayan-snow);
    margin-top: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

/* Mountain silhouette decoration */
.journal-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%23000000' fill-opacity='0.1' d='M0,60 L100,30 L200,50 L300,20 L400,40 L500,10 L600,35 L700,15 L800,45 L900,25 L1000,50 L1100,30 L1200,40 L1200,120 L0,120 Z'/%3E%3C/svg%3E") bottom center no-repeat;
    background-size: cover;
    opacity: 0.5;
}

/* Topographic pattern overlay */
.journal-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.02) 40px,
            rgba(255, 255, 255, 0.02) 80px);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* ========================================
   FOOTER TOP SECTION
   ======================================== */

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    /* margin-bottom: var(--spacing-lg); */
}

/* Footer About Section */
.footer-about {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
}

.footer-logo-icon {
    width: 96px;
    height: 96px;
    /* background: linear-gradient(135deg, var(--terracotta) 0%, var(--glacier-blue) 100%); */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
}

.footer-logo-icon {
    img {
        border-radius: 50%;
    }
}

.footer-logo:hover .footer-logo-icon {
    transform: translateY(-4px) rotate(-5deg);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--himalayan-snow);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.footer-logo-subtitle {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--light-sage);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.footer-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-column-title {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--himalayan-snow);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta) 0%, transparent 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding-left: 0;
    margin-left: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 4px 0;
}

.footer-link::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-medium);
    color: var(--terracotta);
}

.footer-link:hover {
    color: var(--himalayan-snow);
    padding-left: var(--spacing-sm);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--terracotta);
}





/* ========================================
   FOOTER BOTTOM
   ======================================== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    gap: var(--spacing-lg);
}

.footer-copyright {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-copyright a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-copyright a:hover {
    color: var(--himalayan-snow);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
    position: relative;
}

.footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width var(--transition-medium);
}

.footer-bottom-link:hover {
    color: var(--himalayan-snow);
}

.footer-bottom-link:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--mountain-sage) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.4);
    background: linear-gradient(135deg, var(--mountain-sage) 0%, var(--deep-forest) 100%);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .footer-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .footer-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .footer-logo-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .footer-logo-title {
        font-size: 1.25rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .footer-link::before,
    .back-to-top {
        transition: none !important;
    }
}

/* Focus states */
.footer-link:focus-visible,
.footer-bottom-link:focus-visible,
.back-to-top:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .back-to-top {
        display: none !important;
    }

    .journal-footer {
        background: white;
        color: black;
    }
}

.pkp_brand_footer {
    a {
        img {
            display: none;
        }
    }
}

.pkp_brand_footer {
    padding: 0;
}

.has_site_logo .pkp_head_wrapper {
    padding-top: 1rem;
}

.pkp_footer_content {
    padding: 0;
}

.pkp_structure_footer {
    width: auto;
}

.pkp_structure_footer {
    background: #1B4332;
}

.footer-column-title {
    margin-left: 1rem;
}

/* Outer footer container - remove default OJS border */
.pkp_structure_footer {
    background: linear-gradient(180deg, #265939, #265939 100%);
}


/* SIDEBAR*/

.pkp_structure_sidebar {
    /* background: var(--himalayan-snow); */
    background: transparent !important;
    border: none !important;
    padding: 0 0 0 4rem;
}

.journal-sidebar {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 1px solid rgba(27, 67, 50, 0.1);
    border-radius: 0;
    overflow: visible;
}

/* Sidebar Section */
.sidebar-section {
    margin-bottom: var(--spacing-lg);
    background: white;
    border-radius: 8px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.sidebar-section:hover {
    box-shadow: var(--shadow-md);
}

/* Section Title */
.sidebar-section-title,
.pkp_block h2,
.pkp_block h3 {
    font-family: var(--font-ui) !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    color: var(--deep-forest) !important;
    margin-bottom: var(--spacing-sm) !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--terracotta);
}

/* Sidebar Menu/List */
.sidebar-menu,
.pkp_block ul,
.pkp_block ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.sidebar-menu-item,
.pkp_block li {
    margin-bottom: 0 !important;
}

/* Sidebar Links */
.sidebar-menu-link,
.pkp_block a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--charcoal) !important;
    text-decoration: none !important;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.sidebar-menu-link::before,
.pkp_block a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--terracotta);
    transform: scaleY(0);
    transition: transform var(--transition-medium);
}

.sidebar-menu-link:hover,
.pkp_block a:hover {
    background: rgba(27, 67, 50, 0.05) !important;
    padding-left: var(--spacing-lg) !important;
    color: var(--deep-forest) !important;
}

.sidebar-menu-link:hover::before,
.pkp_block a:hover::before {
    transform: scaleY(1);
}

.sidebar-menu-link.active,
.pkp_block a.current {
    background: linear-gradient(90deg, rgba(27, 67, 50, 0.1) 0%, rgba(27, 67, 50, 0.05) 100%) !important;
    color: var(--deep-forest) !important;
    font-weight: 600 !important;
    padding-left: var(--spacing-lg) !important;
}

.sidebar-menu-link.active::before,
.pkp_block a.current::before {
    transform: scaleY(1);
}

/* Current Issue Block */
.pkp_block.block_current_issue,
.current-issue-section {
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--mountain-sage) 100%);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.pkp_block.block_current_issue::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.pkp_block.block_current_issue h2,
.current-issue-section h3 {
    color: var(--himalayan-snow) !important;
    border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}

.pkp_block.block_current_issue a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pkp_block.block_current_issue a:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.pkp_block.block_current_issue a::before {
    background: white !important;
}

/* Search Block */
.pkp_block.block_search {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.pkp_block.block_search input[type="text"],
.pkp_block.block_search input[type="search"] {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--himalayan-snow);
    border: 1px solid rgba(27, 67, 50, 0.2);
    border-radius: 6px;
    color: var(--charcoal);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    transition: all var(--transition-medium);
}

.pkp_block.block_search input:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
    background: white;
}

.pkp_block.block_search button,
.pkp_block.block_search input[type="submit"] {
    width: 100%;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--terracotta);
    border: none;
    border-radius: 6px;
    color: white;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.pkp_block.block_search button:hover,
.pkp_block.block_search input[type="submit"]:hover {
    background: #C89558;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

/* Web Feed Block */
.pkp_block.block_web_feed {
    background: rgba(132, 169, 172, 0.1);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 3px solid var(--glacier-blue);
}

/* Information Block */
.pkp_block.block_information,
.pkp_block.block_developed_by {
    background: rgba(132, 169, 172, 0.1);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 3px solid var(--glacier-blue);
}

.pkp_block.block_information p,
.pkp_block.block_developed_by p {
    color: var(--charcoal);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

/* Language Toggle / Make Submission */
.pkp_block.block_language,
.pkp_block.block_make_submission {
    background: rgba(132, 169, 172, 0.1);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    border-left: 3px solid var(--glacier-blue);
}

.pkp_block.block_make_submission a {
    display: block;
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--accent-green);
    color: white !important;
    border-radius: 6px;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.pkp_block.block_make_submission a:hover {
    background: var(--deep-forest) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Browse Block */
.pkp_block.block_browse {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

/* Subscription Block */
.pkp_block.block_subscription {
    background: linear-gradient(135deg, var(--glacier-blue) 0%, var(--light-sage) 100%);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.pkp_block.block_subscription h2 {
    color: white !important;
    border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}

.pkp_block.block_subscription p {
    color: white;
    font-size: 0.85rem;
}

.pkp_block.block_subscription a {
    color: white !important;
    font-weight: 600;
}

/* Custom Blocks */
.pkp_block.block_custom {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

/* General Block Spacing */
.pkp_block {
    margin-bottom: var(--spacing-md) !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .sidebar-section {
        padding: var(--spacing-sm);
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {

    .journal-sidebar,
    .pkp_structure_sidebar {
        margin-bottom: var(--spacing-lg);
        padding: 2rem;
    }

    .sidebar-section,
    .pkp_block {
        margin-bottom: var(--spacing-sm) !important;
    }

    .has_site_logo .pkp_head_wrapper {
        padding-top: 3rem;
    }

    .pkp_site_name>a {
        padding-bottom: 1.714rem
    }

}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {

    .sidebar-section,
    .pkp_block {
        padding: var(--spacing-sm);
    }

    .sidebar-section-title,
    .pkp_block h2,
    .pkp_block h3 {
        font-size: 0.85rem !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .sidebar-menu-link,
    .pkp_block a,
    .sidebar-section {
        transition: none !important;
    }
}

/* Focus states */
.sidebar-menu-link:focus-visible,
.pkp_block a:focus-visible,
.pkp_block input:focus-visible,
.pkp_block button:focus-visible {
    outline: 3px solid var(--terracotta) !important;
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .pkp_structure_sidebar,
    .journal-sidebar {
        display: none !important;
    }
}

.pkp_site_name a.is_img_text {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.pkp_site_name a.is_img_text img {
    height: 100px;
    width: auto;
}

.pkp_site_name a.is_img_text .site_title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ced7d3;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .pkp_site_name a.is_img_text {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .pkp_site_name a.is_img_text .site_title {
        font-size: 1.3rem;
    }
}


/* ===================================
   Journal of Himalayan Green Print
   Enhanced Responsive Header Styles
   =================================== */

/* Main Header Container */
.pkp_structure_head {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3f 50%, #1a4d2e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #3a7f5f;
    position: relative;
    /* overflow: hidden; */
}

/* Decorative Mountain Background */
.pkp_structure_head::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q150,20 300,50 T600,45 T900,55 T1200,40 L1200,120 L0,120 Z" fill="rgba(0,0,0,0.08)"/></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,80 Q200,30 400,70 T800,65 T1200,75 L1200,120 L0,120 Z" fill="rgba(0,0,0,0.05)"/></svg>');
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 100% auto;
    opacity: 0.6;
    pointer-events: none;
}

/* Leaf Pattern Decoration */
.pkp_structure_head::after {
    content: '🌿';
    position: absolute;
    font-size: 8rem;
    opacity: 0.05;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    pointer-events: none;
}

/* Header Wrapper */
.pkp_head_wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    position: relative;
    z-index: 2;
}

/* Top Section: Logo and Title */
.pkp_site_name_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    position: relative;
}

/* Decorative line accents */
.pkp_site_name_wrapper::before,
.pkp_site_name_wrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5fb88f, transparent);
    animation: shimmer 3s infinite;
}

.pkp_site_name_wrapper::before {
    left: 0;
    width: 150px;
}

.pkp_site_name_wrapper::after {
    right: 0;
    width: 150px;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.pkp_site_name_wrapper a {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pkp_site_name_wrapper a:hover {
    transform: scale(1.02);
}

/* Journal Logo */
.pkp_site_name_wrapper img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    /* border: 4px solid rgba(255, 255, 255, 0.3); */
    /* background: white; */
    /* padding: 8px; */
    box-shadow:
        0 0 20px rgba(95, 184, 143, 0.4),
        0 0 40px rgba(95, 184, 143, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.pkp_site_name_wrapper img::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3a7f5f, #5fb88f);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pkp_site_name_wrapper img:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 0 30px rgba(95, 184, 143, 0.6),
        0 0 60px rgba(95, 184, 143, 0.3);
}

/* Journal Title */
.pkp_site_name {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 2rem 0 0 0;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(95, 184, 143, 0.3);
    /* position: relative; */
}

.pkp_site_name span {
    display: block;
    font-size: 0.938rem;
    font-weight: 400;
    color: #c5e1d3;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Navigation Section - Below Title */
.pkp_navigation_primary_wrapper {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px 12px 0 0;
    padding: 0.5rem 1rem;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Subtle pattern overlay */
.pkp_navigation_primary_wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

.pkp_navigation_primary {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pkp_navigation_primary ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pkp_navigation_primary li {
    position: relative;
}

.pkp_navigation_primary a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    color: #e8f5ee;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect background */
.pkp_navigation_primary a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(95, 184, 143, 0.2), rgba(58, 127, 95, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.pkp_navigation_primary a:hover::before,
.pkp_navigation_primary a:focus::before {
    transform: scaleX(1);
}

.pkp_navigation_primary a:hover,
.pkp_navigation_primary a:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pkp_navigation_primary a.active {
    background: rgba(95, 184, 143, 0.25);
    color: #ffffff;
    box-shadow: inset 0 -3px 0 #5fb88f;
}

.pkp_navigation_primary a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5fb88f, transparent);
}

/* Dropdown Menu */
.pkp_navigation_primary .dropdown {
    position: relative;
}

.pkp_navigation_primary .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3f 100%);
    min-width: 220px;
    border-radius: 8px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pkp_navigation_primary .dropdown-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px);
    pointer-events: none;
}

.pkp_navigation_primary .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pkp_navigation_primary .dropdown-menu a {
    padding: 0.875rem 1.5rem;
    border-radius: 0;
}

.pkp_navigation_primary .dropdown-menu a:hover {
    background: rgba(95, 184, 143, 0.2);
    transform: translateX(8px);
    padding-left: 2rem;
}

/* Search Button */
.pkp_search {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.pkp_search button,
.pkp_search a {
    background: linear-gradient(135deg, rgba(95, 184, 143, 0.25), rgba(58, 127, 95, 0.25));
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.938rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.pkp_search button:hover,
.pkp_search a:hover {
    background: linear-gradient(135deg, rgba(95, 184, 143, 0.4), rgba(58, 127, 95, 0.4));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(95, 184, 143, 0.3);
}

.pkp_search button::before,
.pkp_search a::before {
    content: '🔍';
    font-size: 1rem;
}

/* Mobile Menu Toggle */
.pkp_mobile_menu_toggle {
    display: none;
    background: rgba(95, 184, 143, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
}

.pkp_mobile_menu_toggle:hover {
    background: rgba(95, 184, 143, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.pkp_mobile_menu_toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pkp_mobile_menu_toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.pkp_mobile_menu_toggle.active span:nth-child(2) {
    opacity: 0;
}

.pkp_mobile_menu_toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Large Desktop */
@media screen and (min-width: 1400px) {
    .pkp_site_name {
        font-size: 2.75rem;
    }
}

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .pkp_head_wrapper {
        padding: 1.5rem 1.5rem 0;
    }

    .pkp_site_name {
        font-size: 2rem;
    }

    .pkp_site_name_wrapper img {
        width: 70px;
        height: 70px;
    }

    .pkp_navigation_primary a {
        padding: 0.875rem 1.25rem;
        font-size: 0.938rem;
    }

    .pkp_search {
        position: static;
        transform: none;
        margin-left: auto;
    }
}

/* Mobile (max-width: 767px) */
/* Mobile (max-width: 767px) */
@media screen and (max-width: 767px) {
    .pkp_structure_head::after {
        font-size: 5rem;
        right: -5%;
    }

    .pkp_head_wrapper {
        padding: 1rem 1rem 0;
    }

    .pkp_site_name_wrapper {
        flex-direction: row !important;
        /* Keep horizontal */
        justify-content: space-between !important;
        align-items: center !important;
        gap: 1rem;
        padding-bottom: 1rem;
        padding-right: 0;
        /* Remove this */
        position: relative;
    }

    .pkp_site_name_wrapper::before,
    .pkp_site_name_wrapper::after {
        display: none;
    }

    .pkp_site_name_wrapper a {
        flex-direction: column !important;
        gap: 0.75rem;
        text-align: left !important;
        flex: 1;
    }

    .pkp_site_name_wrapper img {
        width: 50px !important;
        height: 50px !important;
        flex-shrink: 0;
    }

    .pkp_site_name {
        font-size: 1.1rem !important;
        text-align: left !important;
        margin: 0 !important;
    }

    .pkp_site_name span {
        font-size: 0.65rem !important;
        letter-spacing: 1px;
    }

    /* Hamburger button - positioned in wrapper */
    .pkp_site_nav_toggle {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(95, 184, 143, 0.25);
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: white;
        padding: 0.625rem 0.75rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 45px;
        height: 45px;
        flex-shrink: 0;
        position: relative;
        z-index: 1001;
    }

    .pkp_site_nav_toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: white;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }


    .pkp_site_nav_toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .pkp_site_nav_toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .pkp_site_nav_toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Navigation menu - hidden by default */
    .pkp_site_nav_menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 77, 46, 0.98);
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }

    .pkp_site_nav_menu.is_open {
        display: block;
    }

    /* Prevent body scroll */
    body.menu_open {
        overflow: hidden;
    }

    /* Navigation becomes full-width dropdown */
    .pkp_navigation_primary_wrapper {
        border-radius: 0;
        margin: 0;
        background: transparent;
        padding: 1rem;
    }

    .pkp_navigation_primary {
        display: none;
    }

    .pkp_navigation_primary.active {
        display: flex;
        flex-direction: column;
    }

    .pkp_navigation_primary ul {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 0;
    }

    .pkp_navigation_primary li {
        width: 100%;
    }

    .pkp_navigation_primary a {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        text-align: left;
        font-size: 1.1rem;
    }

    /* Mobile dropdown */
    .pkp_navigation_primary .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        margin: 0.5rem 0 0 1.5rem !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border-radius: 8px !important;
        display: none !important;
    }

    .pkp_navigation_primary .dropdown-menu.show {
        display: block !important;
    }

    .pkp_navigation_primary .dropdown-menu a {
        font-size: 1rem;
        padding: 0.875rem 1.25rem !important;
    }

    .pkp_navigation_primary .dropdown-menu a:hover {
        transform: translateX(5px);
        padding-left: 1.75rem !important;
    }

    .pkp_search {
        position: static;
        width: 100%;
        margin: 0;
        padding: 0 1rem 1rem;
    }

    .pkp_search button,
    .pkp_search a {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    .pkp_site_name_wrapper img {
        width: 55px;
        height: 55px;
    }

    .pkp_site_name {
        font-size: 1.25rem;
    }

    .pkp_site_name span {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .pkp_navigation_primary a {
        font-size: 0.875rem;
        padding: 0.875rem;
    }

    .pkp_mobile_menu_toggle {
        right: 0.5rem;
        top: 1rem;
        padding: 0.625rem 0.875rem;
    }
}

/* Accessibility */
.pkp_navigation_primary a:focus,
.pkp_search button:focus,
.pkp_mobile_menu_toggle:focus {
    outline: 3px solid rgba(95, 184, 143, 0.6);
    outline-offset: 3px;
}

/* Smooth transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Print styles */
@media print {

    .pkp_structure_head::before,
    .pkp_structure_head::after,
    .pkp_navigation_primary_wrapper::before {
        display: none;
    }

    .pkp_structure_head {
        position: static;
        box-shadow: none;
    }
}

.pkp_navigation_primary_wrapper {
    background: #1a4d2e;
}

.pkp_navigation_primary_row {
    background: #1a4d2e;
}

/* ===================================
   DROPDOWN MENU FIX - COMPLETE SOLUTION
   =================================== */

/* Force dropdown to be visible and positioned correctly */
ul.dropdown-menu.show {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: translate3d(0, 0, 0) !important;
    background: #1a4d2e !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    padding: 0.5rem !important;
    margin: 0 !important;
    min-width: 165px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Dropdown items styling */
ul.dropdown-menu.show li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

ul.dropdown-menu.show li a {
    display: block !important;
    padding: 0.75rem 1.25rem !important;
    color: #e8f5ee !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    /* white-space: nowrap !important; */
}

ul.dropdown-menu.show li a:hover {
    background: rgba(95, 184, 143, 0.25) !important;
    color: #ffffff !important;
    /* padding-left: 1.75rem !important; */
}

/* Make sure parent li is relative */
.pkp_navigation_primary>li {
    position: relative !important;
}

/* Fix for any hidden dropdowns */
.dropdown-menu {
    display: none !important;
}

.dropdown-menu.show {
    display: block !important;
}

/* Mobile fix */
@media screen and (max-width: 767px) {
    ul.dropdown-menu.show {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.2) !important;
        margin-left: 1rem !important;
        margin-top: 0.5rem !important;
    }
}

/* ===================================
   HERO SECTION - HOMEPAGE
   =================================== */

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5ee 100%);
    padding: 4rem 0;
    margin-top: -1rem;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(27, 67, 50, 0.02) 40px, rgba(27, 67, 50, 0.02) 80px);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Content */
.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2D3E40;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: #D4A574;
    position: relative;
    display: inline-block;
}

.hero-highlight-alt {
    color: #D4A574;
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #52796F;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #1B4332 0%, #2D5F3F 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.35);
    background: linear-gradient(135deg, #0D2318 0%, #1B4332 100%);
}

.hero-btn-secondary {
    background: transparent;
    color: #1B4332;
    border: 2px solid transparent;
}

.hero-btn-secondary:hover {
    color: #D4A574;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4A574 0%, #C89558 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    padding-left: 3px;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

/* Right Side - Cover Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-cover {
    width: 100%;
    height: auto;
    border-radius: 16px;
    /* box-shadow:
        0 20px 60px rgba(27, 67, 50, 0.2),
        0 8px 24px rgba(27, 67, 50, 0.15); */
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.hero-cover:hover {
    /* transform: scale(1.02) translateY(-10px); */
}

/* Decorative Background Elements */
.hero-image-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(132, 169, 172, 0.15) 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(95, 184, 143, 0.1) 0%, rgba(58, 127, 95, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(200, 149, 88, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

/* Decorative curved shape */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: rgb(195, 232, 202);
    clip-path: ellipse(50% 100% at 50% 100%);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.938rem;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .hero-image::before,
    .hero-image::after {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }
}

.is_img_text {
    margin-top: 1rem;
}

/* ===================================
   FIX HORIZONTAL OVERFLOW
   =================================== */

/* Prevent horizontal scrolling */
html,
body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix container widths */
.pkp_structure_page,
.pkp_structure_content,
.pkp_structure_main {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Fix header overflow */
.pkp_structure_head,
.pkp_head_wrapper {
    max-width: 100% !important;
    /* overflow-x: hidden !important; */
}

/* Fix footer overflow */
.pkp_structure_footer,
.footer-container {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Fix hero section overflow */
.hero-section,
.hero-container {
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

.additional_content {
    border-top: none !important;
}