/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. BASE & RESET
   2. Z-INDEX LAYERING SYSTEM
   3. MOBILE STICKY HEADER
   4. MOBILE NAVIGATION WRAPPER (JS RENDERED)
   5. MOBILE NAVIGATION CONTENT PANEL
   6. MOBILE NAV DROPDOWN TOGGLE
   7. MOBILE NAV BUTTONS & TOGGLER
   8. MOBILE STICKY HEADER ACTION BUTTONS
   9. THEME TOAST NOTIFICATIONS
   10. SPINNER ANIMATION
   11. HEADER + SEARCH DESIGN SYSTEM
   12. SEARCH POPUP
   13. RESPONSIVE MEDIA QUERIES
   14. DROPDOWN MENU STYLES
   15. DARK MODE OVERRIDES
   16. FOOTER NEWSLETTER & SOCIAL
   17. DONATION SECTION STYLES
   18. UTILITY CLASSES
============================================ */

/* ============================================
   1. BASE & RESET
   ============================================ */
header {
    margin-top: 0 !important;
}

body {
    padding-top: 0 !important;
}

.nav-container {
    display: flex !important;
}

/* ============================================
   2. Z-INDEX LAYERING SYSTEM
   ============================================ */
.main-header { z-index: 1000; }
.stricky-header { z-index: 1100 !important; }
.mobile-sticky-header { z-index: 1200; }
.mobile-nav__wrapper { z-index: 4500 !important; }
.mobile-theme-toast { z-index: 5000; }
.site-search-popup { z-index: 4600; }

.stricked-header .main-menu__list > li.dropdown > ul {
    z-index: 99999;
    overflow: visible !important;
}

/* ============================================
   3. MOBILE STICKY HEADER BASE STYLES
   ============================================ */
.mobile-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 62px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    display: none;
    gap: 10px;
    border-bottom: 2px solid var(--header-border);
}

.mobile-sticky-header.active {
    transform: translateY(0);
}

.mobile-sticky-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    height: 60px;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
}

.mobile-sticky-header__right {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0;
    margin-left: auto;
    min-height: 30px;
}

/* ============================================
   4. MOBILE NAVIGATION WRAPPER (JS RENDERED)
   ============================================ */
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 4500 !important;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: visibility 500ms ease 500ms, transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
    z-index: 4501;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

/* ============================================
   5. MOBILE NAVIGATION CONTENT PANEL
   ============================================ */
.mobile-nav__content {
    width: 300px;
    max-width: min(300px, 88vw);
    background-color: var(--mobile-drawer-surface);
    z-index: 4502;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,transform 500ms ease 0ms;
    background: var(--mobile-drawer-surface);
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.2);
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
        transform 500ms ease 500ms;
}

/* Logo Box */
.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

/* Close Button */
.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--mobile-drawer-close);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav__close i {
    width: 30px;
    height: 30px;
    position: relative;
    display: block;
}

.mobile-nav__close i::before,
.mobile-nav__close i::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: currentColor;
    position: absolute;
    top: 15px;
    left: 0;
}

.mobile-nav__close i::before {
    transform: rotate(45deg);
}

.mobile-nav__close i::after {
    transform: rotate(-45deg);
}

/* Main Menu List Styles - JS Rendered */
.mobile-nav__container > .main-menu__list {
    display: block !important;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: block;
}

.mobile-nav__content .main-menu__list ul {
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--mobile-drawer-border);
    border-radius: 0;
    background: transparent;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid var(--mobile-drawer-border);
}

.mobile-nav__content .main-menu__list li {
    position: relative;
}

.mobile-nav__content .main-menu__list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
    padding: 0 44px 0 0;
    color: var(--mobile-drawer-text);
    font-family: var(--pifoxen-font);
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li.current > a,
.mobile-nav__content .main-menu__list li > a.expanded,
.mobile-nav__content .main-menu__list li > a:hover {
    color: var(--header-accent);
}

.mobile-nav__content .main-menu__list li ul li a {
    height: 46px;
    padding: 0 0 0 18px;
    color: var(--mobile-drawer-muted);
    font-size: 14px;
    font-weight: 500;
}

.mobile-nav__content .main-menu__list li ul li a:hover {
    color: var(--pifoxen-base);
}

/* ============================================
   6. MOBILE NAV DROPDOWN TOGGLE (JS INTERACTION)
   ============================================ */
.mobile-nav__content .main-menu__list li ul {
    display: block;
}

.mobile-nav__content .main-menu__list li.dropdown.open > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav__content .main-menu__list li.dropdown.open > a {
    color: var(--header-accent);
}

.mobile-nav__content .dropdown-toggle {
    position: absolute;
    top: 8px;
    right: 0;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 0;
    background:  #4CAF50;
    color: var(--mobile-drawer-toggle-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
    cursor: pointer;
}

.mobile-nav__content .dropdown-toggle i {
    transition: transform 0.25s ease;
    transform: rotate(0deg);
}

.mobile-nav__content .dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

.mobile-nav__content .dropdown.open > .dropdown-toggle {
    background: var(--mobile-drawer-toggle-open-bg);
    color: var(--mobile-drawer-toggle-open-text);
}

.mobile-nav__content .dropdown-toggle.expanded {
    background: var(--mobile-drawer-toggle-open-bg);
    color: var(--mobile-drawer-toggle-open-text);
}

.mobile-nav__content .dropdown.open > .dropdown-toggle i {
    transform: rotate(90deg);
}

/* Legacy dropdown support */
.mobile-nav__container .dropdown-toggle {
    cursor: pointer;
}

/* ============================================
   7. MOBILE NAV BUTTONS & TOGGLER
   ============================================ */
.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--pifoxen-black);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--pifoxen-base);
}

/* Mobile Nav Toggler Button */
.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--pifoxen-base);
    cursor: pointer;
    transition: 500ms;
    float: right !important;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--pifoxen-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

/* Mobile Nav Top Section */
.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Mobile Nav Container */
.mobile-nav__container {
    border-top: 1px solid var(--mobile-drawer-border);
    border-bottom: 1px solid var(--mobile-drawer-border);
}

/* Social Links */
.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 17px;
    color: var(--mobile-drawer-text);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: var(--header-accent);
}

/* Contact Info */
.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--mobile-drawer-muted);
    font-size: 15.5px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: var(--mobile-drawer-text);
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--header-accent);
}

.mobile-nav__contact li > i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #4CAF50;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: var(--mobile-drawer-icon-text);
}

.mobile-nav__top {
    margin-top: 20px;
    margin-bottom: 0;
}

.mobile-nav__social a+a {
    margin-left: 24px;
}

/* Hidden Items in Mobile Nav */
.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/* Button Styles */
.mobile-nav__content .pifoxen-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

/* ============================================
   8. MOBILE STICKY HEADER ACTION BUTTONS
   ============================================ */
.mobile-sticky-header__theme,
.mobile-sticky-header__menu {
    color: #4CAF50;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid var(--header-border);
    box-shadow: var(--header-shadow);
}

.mobile-sticky-header__theme:hover,
.mobile-sticky-header__menu:hover {
    background: #e0e0e0;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(9, 204, 127, 0.25);
}

[data-theme="dark"] .mobile-sticky-header__menu,
[data-theme="dark"] .mobile-sticky-header__menu:hover {
    color: var(--header-accent);
}

.mobile-sticky-header__menu i {
    font-size: 15px;
    line-height: 1;
}

/* Vertical Divider for Mobile */
.mobile-sticky-header__divider {
    width: 4px;
    height: 28px;
    color: black;
    margin: 0 4px;
    flex-shrink: 0;
}

/* Action Item - Icon Buttons (Theme, Login) */
.action-item {
    font-size: 18px;
    cursor: pointer;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    flex-shrink: 0;
    border: 1px solid var(--header-border);
}

.action-item:hover {
    color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(9, 204, 127, 0.25);
}

/* Vertical Divider between icons */
.vertical-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(
        180deg,
        rgba(var(--pifoxen-base-rgb), 0) 0%,
        rgba(var(--pifoxen-base-rgb), 0.26) 50%,
        rgba(var(--pifoxen-base-rgb), 0) 100%
    );
    flex-shrink: 0;
    display: block;
}

/* ============================================
   9. THEME TOAST NOTIFICATIONS
   ============================================ */
/* Desktop Theme Toast */
.theme-toast {
    font-family: 'DM Sans', sans-serif;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) translateY(-50px);
    background: #c3e6cb;
    border-color: #c3e6cb;
    color: #155724;
    padding: 10px 22px;
    margin: 20px 10px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14.5px;
    letter-spacing: 1px;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(5, 104, 77, 0.15);
}

.theme-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Mobile Theme Toast */
.mobile-theme-toast {
    position: fixed;
    top: 65px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #c3e6cb;
    border-color: #c3e6cb;
    color: #155724;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    display: none;
    box-shadow: 0 8px 20px rgba(5, 104, 77, 0.15);
}

.mobile-theme-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ============================================
   10. SPINNER ANIMATION FOR THEME TOGGLE
   ============================================ */
.action-item.loading,
.mobile-sticky-header__theme.loading {
    pointer-events: none;
    opacity: 0.7;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    color: #4CAF50;
}

.mobile-sticky-header__theme .spinner {
    width: 16px;
    height: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   11. HEADER + SEARCH DESIGN SYSTEM
   ============================================ */
:root {
    --header-surface: var(--pifoxen-white);
    --header-surface-soft: var(--pifoxen-extra-two);
    --header-border: rgba(var(--pifoxen-black-rgb), 0.08);
    --header-shadow: 0 16px 32px rgba(16, 24, 40, 0.08);
    --header-shadow-strong: 0 24px 60px rgba(16, 24, 40, 0.18);
    --header-text: var(--pifoxen-black);
    --header-muted: var(--pifoxen-gray);
    --header-accent: var(--pifoxen-base);
    --header-accent-soft: rgba(var(--pifoxen-base-rgb), 0.12);
    --header-overlay: rgba(14, 24, 18, 0.62);
    --mobile-drawer-surface: #ffffff;
    --mobile-drawer-surface-soft: #f7f7f7;
    --mobile-drawer-border: rgba(var(--pifoxen-black-rgb), 0.1);
    --mobile-drawer-text: #1f1f1f;
    --mobile-drawer-muted: #5f5f5f;
    --mobile-drawer-close: #1f1f1f;
    --mobile-drawer-toggle-bg: #ff5b34;
    --mobile-drawer-toggle-text: #ffffff;
    --mobile-drawer-toggle-open-bg: #f3f3f3;
    --mobile-drawer-toggle-open-text: #202020;
    --mobile-drawer-icon-bg: #ff5b34;
    --mobile-drawer-icon-text: #ffffff;
}

[data-theme="dark"] {
    --header-surface: #252525;
    --header-surface-soft: #1c201d;
    --header-border: rgba(255, 255, 255, 0.08);
    --header-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    --header-shadow-strong: 0 28px 72px rgba(0, 0, 0, 0.45);
    --header-text: #f2f5f3;
    --header-muted: #c1c9c4;
    --header-accent-soft: rgba(var(--pifoxen-base-rgb), 0.18);
    --header-overlay: rgba(2, 8, 6, 0.78);
    --mobile-drawer-surface: #323232;
    --mobile-drawer-surface-soft: #3a3a3a;
    --mobile-drawer-border: rgba(255, 255, 255, 0.1);
    --mobile-drawer-text: #f3f3f3;
    --mobile-drawer-muted: rgba(255, 255, 255, 0.78);
    --mobile-drawer-close: #f3f3f3;
    --mobile-drawer-toggle-bg: #ff5b34;
    --mobile-drawer-toggle-text: #ffffff;
    --mobile-drawer-toggle-open-bg: #f3f3f3;
    --mobile-drawer-toggle-open-text: #202020;
    --mobile-drawer-icon-bg: #ff5b34;
    --mobile-drawer-icon-text: #ffffff;
}

.main-menu,
.stricky-header.main-menu,
.mobile-sticky-header {
    background: var(--header-surface);
}

.main-menu-wrapper {
    position: relative;
}

.main-menu-wrapper__logo img,
.mobile-sticky-header__logo-img {
    width: auto;
}

.site-logo-img {
    display: block;
    width: auto;
    max-width: 152px;
    max-height: 57px;
}

.site-logo-img--mobile {
    max-width: 157px;
    max-height: 55px;
}

.logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.stricky-header .sticky-header__content > .main-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-item,
.mobile-sticky-header__theme,
.mobile-sticky-header__menu,
.main-menu-wrapper__main-menu .mobile-nav__toggler {
    color: var(--header-text);
    background: var(--header-surface);
    border: 1px solid var(--header-border);
    box-shadow: var(--header-shadow);
}

.action-item:hover,
.mobile-sticky-header__theme:hover,
.mobile-sticky-header__menu:hover,
.main-menu-wrapper__main-menu .mobile-nav__toggler:hover {
    color: var(--header-accent);
    background: var(--header-surface-soft);
    border-color: rgba(var(--pifoxen-base-rgb), 0.22);
}

.main-menu-wrapper__main-menu .mobile-nav__toggler {
    color: var(--pifoxen-base);
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.main-menu-wrapper__main-menu .mobile-nav__toggler:hover {
    color: var(--pifoxen-base);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.theme-toast,
.mobile-theme-toast {
    color: var(--header-text);
    background: var(--header-surface);
    border: 1px solid var(--header-border);
    box-shadow: var(--header-shadow);
}

.mobile-sticky-header {
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================
   12. SEARCH POPUP
   ============================================ */
.site-search-popup {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-search-popup.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-search-popup__overlay {
    position: absolute;
    inset: 0;
    background: var(--header-overlay);
    backdrop-filter: blur(8px);
}

.site-search-popup__content {
    position: relative;
    width: min(880px, 100%);
    padding: 38px;
    border-radius: 30px;
    border: 1px solid var(--header-border);
    background: linear-gradient(135deg, rgba(var(--pifoxen-base-rgb), 0.12), transparent 38%),
                var(--header-surface);
    box-shadow: var(--header-shadow-strong);
}

.site-search-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--header-border);
    border-radius: 50%;
    background: var(--header-surface-soft);
    color: var(--header-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.site-search-popup__close:hover {
    color: var(--header-accent);
    border-color: rgba(var(--pifoxen-base-rgb), 0.25);
    transform: translateY(-2px);
}

.site-search-popup__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--header-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-search-popup__eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: rgba(var(--pifoxen-base-rgb), 0.35);
}

.site-search-popup__title {
    margin: 0 0 12px;
    color: var(--header-text);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.site-search-popup__text {
    max-width: 640px;
    margin: 0 0 26px;
    color: var(--header-muted);
    font-size: 17px;
    line-height: 1.8;
}

.site-search-popup__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    margin-bottom: 24px;
}

.site-search-popup__form input {
    min-height: 64px;
    padding: 0 22px;
    border-radius: 18px;
    border: 1px solid var(--header-border);
    background: var(--header-surface-soft);
    color: var(--header-text);
    font-size: 16px;
    box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.05);
}

.site-search-popup__form input:focus {
    outline: 0;
    border-color: rgba(var(--pifoxen-base-rgb), 0.5);
    box-shadow: 0 0 0 4px rgba(var(--pifoxen-base-rgb), 0.12);
}

.site-search-popup__quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-search-popup__quick-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--header-border);
    background: var(--header-surface-soft);
    color: var(--header-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.site-search-popup__quick-links a:hover {
    color: var(--header-accent);
    border-color: rgba(var(--pifoxen-base-rgb), 0.24);
    background: rgba(var(--pifoxen-base-rgb), 0.08);
}

/* ============================================
   13. RESPONSIVE MEDIA QUERIES
   ============================================ */
/* Mobile (< 768px) */
@media (max-width: 767px) {
    .mobile-sticky-header {
        display: block;
    }
    
    .mobile-nav__toggler {
        display: flex;
    }
    
    .main-menu-wrapper__right,
    .main-menu-wrapper__main-menu {
        display: block;
    }
    
    .stricky-header {
        display: none !important;
    }
    
    .theme-toast {
        display: none !important;
    }
    
    .mobile-theme-toast {
        display: block;
    }
    
    .site-search-popup {
        align-items: center;
        justify-content: center;
        padding: 16px;
    }
    
    .site-search-popup__content {
        width: min(720px, 100%);
        max-height: calc(100vh - 32px);
        overflow-y: auto;
        padding: 28px 18px 22px;
        border-radius: 28px;
    }
    
    .site-search-popup__title {
        font-size: 30px;
    }
    
    .site-search-popup__text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .site-search-popup__form {
        grid-template-columns: 1fr;
    }
    
    .site-search-popup__form .thm-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet and Mobile (max-width: 991px) */
@media (max-width: 991px) {
    .main-header__top {
        display: none !important;
    }

    .main-menu {
        background: #fff;
    }

    .main-menu-wrapper {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        min-height: 86px;
        padding: 0 20px;
    }

    .main-menu-wrapper__left {
        display: flex !important;
        align-items: center;
        flex: 1 1 auto;
        min-width: 0;
    }

    .main-menu-wrapper__logo {
        padding: 16px 0 !important;
        min-width: 0;
    }

    .main-menu-wrapper__logo a {
        display: flex;
        align-items: center;
    }

    .main-menu-wrapper__logo img {
        width: auto;
        max-width: 155px !important;
        max-height: 46px !important;
    }

    .main-menu-wrapper__call,
    .main-menu > .main-menu-wrapper > .main-menu-wrapper__main-menu > .main-menu__list {
        display: none !important;
    }

    .main-menu-wrapper__main-menu {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        width: auto !important;
        margin-left: auto;
        padding-left: 12px;
    }

    .main-menu-wrapper__main-menu .mobile-nav__toggler {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        min-width: 0;
        min-height: 0;
        padding: 0;
        margin: 0;
        float: none !important;
        margin-left: auto;
        line-height: 1;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .mobile-sticky-header {
        display: block;
    }

    .main-menu-wrapper__right {
        display: none !important;
    }

    body.has-sticky-header {
        padding-top: 60px !important;
    }

    .theme-toast {
        display: none !important;
    }

    .mobile-theme-toast {
        display: block;
    }
    
    .site-search-popup {
        align-items: center;
        justify-content: center;
        padding: 14px;
    }
    
    .site-search-popup__content {
        width: min(600px, 100%);
        max-height: calc(90vh - 30px);
        overflow-y: auto;
        padding: 26px 22px 22px;
        border-radius: 24px;
    }
}

/* Tablet specific adjustments (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .main-menu-wrapper {
        min-height: 86px;
        padding: 0 24px;
    }

    .main-menu-wrapper__logo img {
        max-width: 175px !important;
        max-height: 46px !important;
    }

    .mobile-sticky-header__inner {
        padding: 10px 25px;
        height: 60px;
    }

    .mobile-sticky-header__logo-img {
        max-height: 38px;
        max-width: 160px;
    }

    .mobile-sticky-header__theme,
    .mobile-sticky-header__menu {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .mobile-sticky-header__divider {
        height: 28px;
        margin: 0 8px;
        color: black;
    }

    body.has-sticky-header {
        padding-top: 60px !important;
    }

    .mobile-theme-toast {
        top: 70px;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .mobile-sticky-header__logo-img {
        max-height: 28px;
        max-width: 100px;
    }

    .mobile-sticky-header__inner {
        padding: 8px 12px;
        height: 54px;
    }

    .mobile-sticky-header__theme,
    .mobile-sticky-header__menu {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .mobile-sticky-header__divider {
        height: 20px;
        margin: 0 2px;
        color: black;
    }

    body.has-sticky-header {
        padding-top: 54px !important;
    }

    .mobile-theme-toast {
        top: 60px;
    }
}

/* Desktop adjustments for medium screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .mobile-sticky-header {
        display: block;
    }

    body.has-sticky-header {
        padding-top: 60px !important;
    }

    .mobile-sticky-header__inner {
        padding: 10px 24px;
        height: 60px;
    }

    .mobile-sticky-header__logo-img {
        max-height: 38px;
        max-width: 160px;
    }

    .mobile-sticky-header__theme,
    .mobile-sticky-header__menu {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .mobile-sticky-header__divider {
        height: 26px;
        margin: 0 8px;
    }

    .main-menu-wrapper__right {
        gap: 10px;
    }

    .action-item {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .donate-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .main-menu-wrapper__left {
        gap: 15px;
    }
    
    .main-menu-wrapper__call {
        display: none;
    }
}

@media (max-width: 1199px) {
    .main-slider {
        height: auto;
        min-height: 0;
    }

    .main-slider .swiper-slide {
        min-height: 680px;
    }

    .main-slider .container {
        padding-top: 168px;
        padding-bottom: 170px;
    }

    .main-slider .image-layer,
    .page-header-bg,
    .fundraishing-bg.jarallax {
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }

    .main-slider .swiper-slide-active .image-layer {
        transform: scale(1.08);
    }

    .page-header {
        padding: 96px 0 92px;
    }

    .page-header__inner h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .main-slider .swiper-slide {
        min-height: 620px;
    }

    .main-slider .container {
        padding-top: 156px;
        padding-bottom: 148px;
    }

    .main-slider .image-layer,
    .page-header-bg,
    .fundraishing-bg.jarallax {
        background-position: 56% 24% !important;
    }

    .main-slider .swiper-slide-active .image-layer {
        transform: scale(1.03);
    }

    .page-header {
        padding: 88px 0 84px;
    }

    .page-header__inner h2 {
        font-size: 34px;
        line-height: 42px;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .main-menu-wrapper__left {
        gap: 30px;
    }
}

@media (min-width: 1200px) and (max-width: 1690px) {
    .main-menu {
        padding-left: 28px;
        padding-right: 28px;
    }

    .main-menu-wrapper,
    .stricky-header .sticky-header__content > .main-menu-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .main-menu-wrapper__left,
    .main-menu-wrapper__main-menu,
    .main-menu-wrapper__right {
        float: none;
    }

    .main-menu-wrapper__left {
        flex: 0 0 auto;
        gap: 18px;
        min-width: 0;
    }

    .main-menu-wrapper__logo {
        margin-right: 0;
        padding-top: 28px;
        padding-bottom: 28px;
        flex: 0 0 auto;
    }

    .main-menu-wrapper__call {
        display: none !important;
    }

    .main-menu-wrapper__main-menu {
        flex: 1 1 auto;
        width: auto !important;
        min-width: 0;
        justify-content: center;
    }

    .main-menu-wrapper__right {
        flex: 0 0 auto;
        padding: 0;
        gap: 10px;
    }

    .main-menu .main-menu__list,
    .stricky-header .main-menu__list {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .main-menu .main-menu__list > li,
    .stricky-header .main-menu__list > li {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .main-menu .main-menu__list > li + li,
    .stricky-header .main-menu__list > li + li {
        margin-left: 26px;
    }

    .main-menu .main-menu__list > li > a,
    .stricky-header .main-menu__list > li > a {
        font-size: 15px;
    }

    .main-menu .main-menu__list > li > a::before,
    .stricky-header .main-menu__list > li > a::before {
        top: -32px;
    }

    .action-item {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .donate-btn {
        padding: 12px 18px;
        font-size: 13px;
        line-height: 1.25;
    }

    .site-logo-img {
        max-width: 138px;
        max-height: 52px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .main-header__top {
        display: none;
    }

    .main-menu {
        padding-left: 22px;
        padding-right: 22px;
    }

    .main-menu-wrapper__main-menu {
        justify-content: flex-end;
        flex: 0 0 auto;
    }

    .main-menu > .main-menu-wrapper > .main-menu-wrapper__main-menu > .main-menu__list {
        display: none;
    }

    .main-menu-wrapper__main-menu .mobile-nav__toggler {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        line-height: 1;
        padding: 0;
        margin-right: 6px;
    }

    .main-menu-wrapper__right {
        gap: 8px;
    }

    .donate-btn {
        padding: 11px 16px;
        font-size: 12px;
    }
}

@media (min-width: 1400px) and (max-width: 1690px) {
    .main-menu .main-menu__list > li + li,
    .stricky-header .main-menu__list > li + li {
        margin-left: 20px;
    }

    .main-menu .main-menu__list > li > a,
    .stricky-header .main-menu__list > li > a {
        font-size: 14px;
    }

    .donate-btn {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Stricky Header Adjustments */
@media (min-width: 992px) {
    .stricky-header.stricky-fixed .main-menu-wrapper {
        min-height: 74px;
    }

    .stricky-header.stricky-fixed .main-menu-wrapper__logo {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .stricky-header.stricky-fixed .main-menu-wrapper__logo img {
        max-height: 46px !important;
        width: auto;
    }

    .stricky-header.stricky-fixed .main-menu .main-menu__list > li,
    .stricky-header.stricky-fixed .stricked-menu .main-menu__list > li {
        padding-top: 29px !important;
        padding-bottom: 29px !important;
    }
}

/* ============================================
   14. DROPDOWN MENU STYLES
   ============================================ */
.main-menu__list > li.dropdown:hover > ul,
.stricked-menu .main-menu__list > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ============================================
   15. DARK MODE OVERRIDES
   ============================================ */
[data-theme="dark"] .action-item {
    color: #4CAF50;
    border-color: #4CAF50;
}

[data-theme="dark"] .footer-newsletter-compact__label {
    color: #1d1d1d;
}

[data-theme="dark"] .footer-newsletter-compact__label i {
    color: #4CAF50;
}

[data-theme="dark"] .footer-newsletter-compact__input {
    background: #1d1d1d;
    border-color: #fff;
    color: #e4e6eb;
}

[data-theme="dark"] .footer-newsletter-compact__input::placeholder {
    color: #e4e6eb;
}

[data-theme="dark"] .footer-newsletter-compact__btn {
    background: #4CAF50;
    border-color: #fff;
    color: #fff;
}

[data-theme="dark"] .footer-newsletter-compact__input:focus-visible {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

[data-theme="dark"] .footer-newsletter-compact__btn:hover {
    background: #1d1d1d;
    color: #4CAF50;
    border-color: #fff;
}

[data-theme="dark"] .site-footer__social-title {
    color: #a8a8a8;
}

[data-theme="dark"] .site-footer__social a {
    background: var(--pifoxen-gray);
    color: black;
}

[data-theme="dark"] .site-footer__social a:hover {
    background: var(--pifoxen-gray);
    color: #fff;
}

/* Dark mode for donation section */
[data-theme="dark"] .donation-section {
    background-color: #252525;
    color: #4CAF50;
}

[data-theme="dark"] .donation-title {
    color: #4CAF50;
}

[data-theme="dark"] .donation-subtitle {
    color: rgba(255, 255, 255, 0.84);
}

[data-theme="dark"] .donation-circle {
    border: 12px solid #4CAF50;
}

[data-theme="dark"] .donation-card {
    background: #2b2b2b;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .donation-right {
    background: #252525;
}

[data-theme="dark"] .donation-right .comment-form__input-box input,
[data-theme="dark"] .donation-right .comment-form__input-box textarea,
[data-theme="dark"] .donation-right .comment-form__input-box select {
    background: #1f1f1f;
    border-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

[data-theme="dark"] .donation-right .comment-form__input-box input::placeholder,
[data-theme="dark"] .donation-right .comment-form__input-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

[data-theme="dark"] .donation-right .donation-details__sidebar-single {
    background: #2b2b2b;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
}

[data-theme="dark"] .donation-right::before {
    background: radial-gradient(circle, rgba(9, 204, 127, 0.08) 0%, transparent 72%);
}

[data-theme="dark"] .donation-gradient {
    background: linear-gradient(to top, #171717 0%, #1f1f1f 60%, transparent 100%);
}

/* ============================================
   16. FOOTER NEWSLETTER & SOCIAL
   ============================================ */
.footer-newsletter-compact {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-newsletter-compact__label {
    color: black;
    font-size: 15px;
    font-family: 'Fredoka One', cursive;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
}

.footer-newsletter-compact__label i {
    color: #4CAF50;
}

.footer-newsletter-compact__form {
    display: flex;
    gap: 8px;
}

.footer-newsletter-compact__input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #a8a8a8;
    border-radius: 6px;
    padding: 8px 15px;
    color: black;
    font-size: 14px;
    outline: none;
}

.footer-newsletter-compact__input:focus-visible {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.footer-newsletter-compact__input::placeholder {
    color: #a8a8a8;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.footer-newsletter-compact__btn {
    width: 45px;
    height: 39px;
    border-radius: 6px;
    background: #4CAF50;
    border: 2px solid #a8a8a8;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 13px;
}

.footer-newsletter-compact__btn:hover {
    background: black;
    color: #4CAF50;
    transform: translateY(-1.35px);
}

/* Footer Bottom */
.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.site-footer__bottom-text {
    margin: 0;
    color: #a8a8a8;
}

.site-footer__bottom-text a {
    color: #4CAF50;
    text-decoration: none;
}

/* Social Wrapper */
.site-footer__social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.site-footer__social-title {
    margin: 0;
    color: #a8a8a8;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #a8a8a8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
}

.site-footer__social a:hover {
    background: #4CAF50;
    color: #fff;
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
    .site-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .site-footer__social-wrapper {
        order: -1;
    }
}

/* ============================================
   17. DONATION SECTION STYLES
   ============================================ */
.donation-section *,
.donation-section *::before,
.donation-section *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.donation-section {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
}

.donation-section h1, 
.donation-section h2, 
.donation-section h3 {
    margin: 0;
}

.donation-container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 10px;
}

.donation-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.donation-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    border: 12px solid white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    flex-shrink: 0;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.donation-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.donation-circle:hover img {
    transform: scale(1.0);
}

.donation-header-text {
    text-align: left;
    max-width: 500px;
    padding-left: 30px;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.donation-title {
    font-size: 3.3rem;
    font-weight: 650;
    color: #4CAF50;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    line-height: 1.2;
    font-family: 'Fredoka One', cursive;
    position: relative;
    display: inline-block;
}

.donation-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #E8B89D);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s forwards;
}

@keyframes expandWidth {
    to { width: 100%; }
}

.donation-subtitle {
    font-size: 1.125rem;
    color: black;
    line-height: 1.75;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.donation-bottom {
    padding: 0 20px 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.donation-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
}

.donation-left {
    flex: 1;
    background-color: #4CAF50;
    padding: 40px;
    min-width: 0;
}

.donation-left h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.donation-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}

.donation-right {
    flex: 1;
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.donation-right::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(9,204,127,0.03) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.donation-right img {
    width: 350px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: gentleBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.donation-right form,
.donation-right .donation-details__sidebar-single,
.donation-right .alert-message {
    position: relative;
    z-index: 1;
}

.donation-right .comment-form__input-box {
    margin-bottom: 18px;
}

.donation-right .comment-form__input-box input,
.donation-right .comment-form__input-box textarea,
.donation-right .comment-form__input-box select {
    width: 100%;
    min-height: 58px;
    padding: 16px 20px;
    border: 1px solid rgba(20, 33, 43, 0.12);
    border-radius: 14px;
    background: #ffffff;
    color: var(--pifoxen-black);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.donation-right .comment-form__input-box textarea {
    min-height: 150px;
    resize: vertical;
}

.donation-right .comment-form__input-box input:focus,
.donation-right .comment-form__input-box textarea:focus,
.donation-right .comment-form__input-box select:focus {
    border-color: rgba(76, 175, 80, 0.45);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
}

.donation-right .comment-form__btn-box {
    margin-top: 8px;
}

.donation-right .donation-details__sidebar-single {
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(20, 33, 43, 0.08);
}

/* Responsive Donation */
@media (max-width: 900px) {
    .donation-top {
        flex-direction: column;
        text-align: center;
    }
    
    .donation-header-text {
        text-align: center;
        padding-left: 0;
    }
    
    .donation-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .donation-circle {
        width: 300px;
        height: 300px;
    }
    
    .donation-title {
        font-size: 2.5rem;
    }
    
    .donation-card {
        flex-direction: column;
    }
    
    .donation-left,
    .donation-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .donation-circle {
        width: 250px;
        height: 250px;
        border-width: 8px;
    }
    
    .donation-title {
        font-size: 2rem;
    }
    
    .donation-left,
    .donation-right {
        padding: 24px;
    }
}

.donation-gradient {
    height: 192px;
    background: linear-gradient(to top, #E8B89D 0%, #F4C2A1 60%, transparent 100%);
    margin-top: -60px;
    position: relative;
    z-index: -1;
}

/* Accordion Styles */
.accordion-item {
    background: transparent;
    margin-bottom: 8px;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    color: #fff;
    padding-left: 10px;
}

.accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: width 0.3s ease;
    z-index: 0;
}

.accordion-header:hover::before {
    width: 100%;
}

.accordion-header span:first-child {
    position: relative;
    z-index: 1;
}

.accordion-icon {
    font-weight: 300;
    font-size: 1.5rem;
    margin-left: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.accordion-icon.rotating {
    transform: rotate(360deg) scale(1.1);
    background: rgba(255,255,255,0.4);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: transparent;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
}

.accordion-content.active {
    max-height: 200px;
    padding-bottom: 20px;
    transition: max-height 0.5s ease-in-out, padding 0.4s ease;
}

.accordion-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.1s;
}

.accordion-content.active p {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   18. UTILITY CLASSES
   ============================================ */
.alert-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid;
    display: none;
}

.alert-message.success { 
    background: #d4edda; 
    color: #155724; 
    border-color: #c3e6cb; 
}

.alert-message.error { 
    background: #f8d7da; 
    color: #721c24; 
    border-color: #f5c6cb; 
}

.text-danger { 
    font-size: 0.875rem; 
    display: block;
    margin-top: 5px;
}

select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    height: 50px;
}

.home-video-modal {
    width: min(92vw, 960px);
    margin: 40px auto;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
    background: #000;
    position: relative;
}

.home-video-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.72);
    color: #fff;
    z-index: 2;
    transition: background 0.25s ease, transform 0.25s ease;
}

.home-video-modal__close:hover {
    background: rgba(9, 204, 127, 0.92);
    transform: scale(1.04);
}

.home-video-modal__player {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    background: #000;
}
