/* =================================================================
   CSS RESET & GLOBAL STYLES
   ================================================================= */

:root {
    --primary-purple: #371167;
    --accent-violet: #8C3ADE;
    --soft-lavender: #ECEAFF;
    --brand-gradient: linear-gradient(135deg, #8C3ADE 0%, #371167 100%);
    --primary-start: var(--accent-violet);
    --primary-end: var(--primary-purple);
    --gradient-primary: var(--brand-gradient);
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-primary: #2d3748;
    --text-secondary: #4a4a6e;
    --text-dark: #1f1f45;
    --white: #ffffff;
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-bg);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 90px;
}

.internal-page .hero-section,
.internal-page .about-hero,
.internal-page .events-hero,
.internal-page .team-hero,
.internal-page .contact-hero,
.internal-page .contact-hero-section,
.internal-page .podcast-hero {
    background-color: #371167 !important;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =================================================================
   CONTAINER & LAYOUT UTILITIES
   ================================================================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.section {
    padding: 100px 0;
    background-color: var(--soft-lavender);
}

.home-page .section {
    background-color: #E6E6FA;
    padding: 80px 0;
}

.home-page .section:nth-of-type(even) {
    background-color: #E6E6FA;
}

.section:nth-of-type(even) {
    background-color: var(--white);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-purple);
}

p {
    color: var(--text-dark);
}

.icon-accent, .purpose-card .program-icon i, .purpose-card .value-icon i, .testimonial-quote i, .footer-social i {
    color: var(--accent-violet);
}

h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

p {
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

a:hover {
    color: var(--accent-violet);
}

/* =================================================================
   HEADER & NAVIGATION
   ================================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 100;
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
    padding: 0 36px;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    margin-left: 0;
}

.main-nav {
    position: relative;
    display: flex;
    gap: 0.3rem;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
    margin-left: 20px;
}

.main-nav .search-container {
    position: relative;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: linear-gradient(90deg, #8C3ADE 0%, #6b2db0 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-violet);
    background-color: rgba(140, 58, 222, 0.12);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active,
.mobile-nav-link.active {
    background: rgba(140, 58, 222, 0.2);
    color: var(--primary-purple);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.35rem;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-violet);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background-color: var(--primary-purple);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(55, 17, 103, 0.18);
    padding: 0.85rem;
    border: 1px solid rgba(140, 58, 222, 0.14);
    border-radius: 18px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    z-index: 1200;
}

.mobile-menu.active {
    display: block;
    animation: mobileMenuReveal 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.5rem;
    align-items: center;
    padding: 0.35rem;
    border-radius: 14px;
    border: 1px solid rgba(140, 58, 222, 0.12);
    background: linear-gradient(140deg, rgba(236, 234, 254, 0.58), rgba(236, 234, 254, 0.3));
    margin-bottom: 0.7rem;
}

.mobile-top-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(140, 58, 222, 0.12);
    background: rgba(255, 255, 255, 0.88);
}

.mobile-top-search i {
    color: var(--accent-violet);
    font-size: 0.92rem;
}

.mobile-top-search .mobile-search-input {
    font-size: 0.88rem;
}

.mobile-accordion-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-accordion-link,
.mobile-accordion-trigger {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(140, 58, 222, 0.11);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 255, 0.95));
    color: var(--text-primary);
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mobile-accordion-trigger {
    border: 1px solid rgba(140, 58, 222, 0.13);
}

.mobile-accordion-link i,
.mobile-accordion-trigger i {
    color: var(--accent-violet);
    font-size: 0.85rem;
    transition: transform 0.26s ease;
}

.mobile-accordion-link:hover,
.mobile-accordion-link:active,
.mobile-accordion-trigger:hover,
.mobile-accordion-trigger:active {
    border-color: rgba(140, 58, 222, 0.28);
    box-shadow: 0 8px 18px rgba(55, 17, 103, 0.1);
    transform: translateY(-1px);
}

.mobile-accordion-link.active {
    background: linear-gradient(145deg, rgba(236, 234, 254, 0.82), rgba(236, 234, 254, 0.52));
    border-color: rgba(140, 58, 222, 0.24);
    color: var(--accent-violet);
}

.mobile-accordion-item {
    border-radius: 12px;
}

.mobile-accordion-item.open .mobile-accordion-trigger {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-color: rgba(140, 58, 222, 0.3);
}

.mobile-accordion-item.open .mobile-accordion-trigger i {
    transform: rotate(45deg);
}

.mobile-accordion-panel {
    max-height: 0;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
    background: rgba(236, 234, 254, 0.45);
    border: 1px solid rgba(140, 58, 222, 0.12);
    border-top: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0.65rem;
}

.mobile-accordion-item.open .mobile-accordion-panel {
    max-height: 260px;
    padding: 0.45rem 0.65rem 0.65rem;
}

.mobile-sub-link {
    display: block;
    padding: 0.6rem 0.7rem;
    margin-top: 0.25rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.mobile-sub-link:hover,
.mobile-sub-link:active {
    background: rgba(255, 255, 255, 0.85);
    color: var(--accent-violet);
    border-color: rgba(140, 58, 222, 0.16);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    position: relative;
    display: inline-flex;
}

.mobile-lang-toggle {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(140, 58, 222, 0.15);
    cursor: pointer;
    color: var(--accent-violet);
    padding: 0 0.65rem;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    min-width: 64px;
}

.mobile-lang-toggle:active {
    background: rgba(236, 234, 254, 0.95);
    border-color: rgba(140, 58, 222, 0.28);
}

.mobile-lang-toggle i {
    font-size: 0.95rem;
}

.mobile-lang-dropdown {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(140, 58, 222, 0.12);
    border-radius: 10px;
    padding: 5px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 22px rgba(55, 17, 103, 0.14);
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 124px;
    z-index: 5;
}

.mobile-lang-option {
    display: block;
    padding: 8px 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
}

.mobile-lang-dropdown.active {
    display: flex;
}

.mobile-lang-option:hover {
    background: rgba(140, 58, 222, 0.12);
    color: var(--accent-violet);
    transform: translateX(3px);
}

.mobile-lang-option.active {
    background: rgba(140, 58, 222, 0.16);
    color: var(--accent-violet);
}

/* Mobile CTA Button */
.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.85rem;
    height: 42px;
    background: linear-gradient(135deg, #8C3ADE 0%, #6b2db0 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(236, 234, 254, 0.25);
    box-shadow: 0 6px 16px rgba(140, 58, 222, 0.24);
    cursor: pointer;
    white-space: nowrap;
    min-width: 88px;
}

.mobile-cta-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(140, 58, 222, 0.16);
}

@keyframes mobileMenuReveal {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =================================================================
   SEARCH CONTAINER & INPUT
   ================================================================= */

/* Desktop Search */
.search-container {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 0;
    flex-shrink: 0;
    position: relative;
    height: 44px;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--accent-violet);
    width: 40px;
    height: 40px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 8px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.search-toggle:hover {
    color: var(--primary-purple);
    background-color: rgba(140, 58, 222, 0.08);
    transform: scale(1.08);
}

.search-toggle:active {
    transform: scale(0.95);
}

.search-input-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    height: 40px;
    background: rgba(236, 234, 254, 0.7);
    border: 1.5px solid rgba(140, 58, 222, 0.18);
    border-radius: 8px;
    padding: 0 12px;
    gap: 8px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: width, opacity;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.search-container:hover .search-input-wrapper,
.search-container.active .search-input-wrapper {
    width: 220px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(236, 234, 254, 0.85);
    border-color: rgba(140, 58, 222, 0.28);
}

.search-input-wrapper:focus-within {
    width: 220px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(236, 234, 254, 0.9);
    border-color: var(--accent-violet);
}

.search-input-wrapper:hover,
.search-input-wrapper:focus-within {
    border-color: var(--accent-violet);
    background: rgba(236, 234, 254, 0.95);
}

.search-input-wrapper .search-icon {
    color: var(--accent-violet);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.search-input-wrapper:focus-within .search-icon {
    opacity: 0.7;
}

.search-input {
    background: none;
    border: none;
    outline: none;
    font-size: 0.93rem;
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
    height: 100%;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 1;
    font-size: 1rem;
    flex-shrink: 0;
}

.search-close:hover {
    color: var(--accent-violet);
    transform: rotate(90deg);
}

/* ========== Language Switcher ========== */

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0;
}

.lang-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent-violet);
    padding: 6px 8px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    border-radius: 6px;
}

.lang-toggle:hover {
    color: var(--accent-violet);
    background: rgba(140, 58, 222, 0.08);
    transform: scale(1.08);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(140, 58, 222, 0.16);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(55, 17, 103, 0.12);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    pointer-events: none;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    display: block;
    padding: 12px 18px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

.lang-option:hover {
    background: rgba(140, 58, 222, 0.12);
    color: var(--accent-violet);
    transform: translateX(4px);
}

.lang-option.active {
    background: rgba(140, 58, 222, 0.16);
    color: var(--accent-violet);
}

/* ========== CTA Button ========== */

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: linear-gradient(135deg, #8C3ADE 0%, #6b2db0 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(236, 234, 254, 0.25);
    box-shadow: 0 3px 12px rgba(140, 58, 222, 0.2);
    cursor: pointer;
    white-space: nowrap;
    margin-left: 4px;
}

.nav-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(140, 58, 222, 0.28);
    background: linear-gradient(135deg, #9c4ae6 0%, #7a3bb8 100%);
}

.nav-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(140, 58, 222, 0.2);
}

/* Mobile Search */
.mobile-search-container {
    padding: 1rem;
    border-bottom: 1.5px solid rgba(140, 58, 222, 0.08);
    margin-bottom: 0.75rem;
    background: linear-gradient(
        180deg, rgba(236, 234, 255, 0.4), rgba(236, 234, 255, 0.1));
}

.mobile-search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(236, 234, 254, 0.6);
    border: 1.5px solid rgba(140, 58, 222, 0.16);
    border-radius: 8px;
    padding: 10px 14px;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-search-input-wrapper:focus-within {
    border-color: var(--accent-violet);
    box-shadow: 0 4px 16px rgba(140, 58, 222, 0.15), 0 0 0 3px rgba(140, 58, 222, 0.08);
    background: linear-gradient(
        180deg, rgba(236, 234, 255, 0.5), var(--light-bg));
}

.mobile-search-input-wrapper i {
    color: var(--accent-violet);
    transition: color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.mobile-search-input-wrapper:focus-within i {
    color: var(--accent-violet);
}

.mobile-search-input {
    background: none;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
    padding: 0;
}

.mobile-search-input::placeholder {
    color: var(--text-secondary);
}

/* Responsive Behavior */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .search-container {
        display: none !important;
    }

    .search-toggle {
        display: none !important;
    }

    .search-input-wrapper {
        display: none !important;
    }

    .lang-switcher {
        display: none !important;
    }

    .nav-cta-btn {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .main-nav {
        display: flex !important;
    }

    .search-container {
        display: flex;
        margin-left: auto;
    }

    .search-toggle {
        display: flex !important;
    }

    .lang-switcher {
        display: flex;
        align-items: center;
        margin: 0 12px;
    }

    .nav-cta-btn {
        display: inline-flex;
    }
}

/* =================================================================
   HERO SECTION - RESPONSIVE SCALING
   ================================================================= */

.hero-section,
.about-hero,
.events-hero,
.team-hero,
.contact-hero,
.contact-hero-section,
.podcast-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
    padding-top: clamp(100px, 12vh, 160px);
    padding-bottom: 110px;
    overflow: hidden;
    background-color: #371167;
    background-image: linear-gradient(145deg, rgba(55,17,103,0.95), rgba(140,58,222,0.4)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    transition: all 0.2s ease-in-out;
    z-index: 0;
}

.hero-section::before,
.about-hero::before,
.events-hero::before,
.team-hero::before,
.contact-hero::before,
.contact-hero-section::before,
.podcast-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(55,17,103,0.65) 0%, rgba(140,58,222,0.32) 42%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-section > *,
.about-hero > *,
.events-hero > *,
.team-hero > *,
.contact-hero > *,
.contact-hero-section > *,
.podcast-hero > * {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-section h1,
.hero-section p,
.about-hero h1,
.about-hero p,
.events-hero h1,
.events-hero p,
.team-hero h1,
.team-hero p,
.contact-hero h1,
.contact-hero p,
.contact-hero-section h1,
.contact-hero-section p,
.podcast-hero h1,
.podcast-hero p {
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.internal-page section {
    background: linear-gradient(220deg, rgba(236,234,254,0.56), rgba(140,58,222,0.12)), var(--soft-lavender);
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--accent-violet);
    border: 2px solid var(--accent-violet);
}

.internal-page .btn-primary,
.internal-page .btn-secondary,
.internal-page i {
    color: var(--accent-violet);
}

.internal-page .btn-primary:hover,
.internal-page .btn-secondary:hover {
    box-shadow: var(--shadow-md);
}

.section-overlay {
    position: relative;
    background: linear-gradient(220deg, rgba(236,234,254,0.35), rgba(140,58,222,0.08)), var(--soft-lavender);
}

.section-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, rgba(140,58,222,0.16), rgba(55,17,103,0.12));
    pointer-events: none;
    z-index: 0;
}

.section-overlay > .container,
.section-overlay > * {
    position: relative;
    z-index: 1;
}

.card-depth,
.event-card,
.podcast-card,
.purpose-card,
.goal-card,
.team-member,
.contact-form,
.contact-info-section {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(55,17,103,0.14);
    border: 1px solid rgba(140,58,222,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-depth:hover,
.event-card:hover,
.podcast-card:hover,
.purpose-card:hover,
.goal-card:hover,
.team-member:hover,
.contact-form:hover,
.contact-info-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(55,17,103,0.2);
    border-color: rgba(140,58,222,0.35);
}

.event-card .event-meta,
.purpose-card h3,
.team-member .team-role,
.contact-info-item h3 {
    color: var(--accent-violet);
    font-weight: 700;
    letter-spacing: 0.4px;
}

.hero-section,
.section-overlay {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: translateZ(0);
}

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .hero-background {
        background-position: center top;
    }

    .hero-section {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-background {
        background-position: center center;
    }

    .hero-section {
        min-height: 70vh;
        padding-top: 95px;
        padding-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-background {
        background-position: 50% 30%;
    }

    .hero-section {
        min-height: 65vh;
        padding-top: 80px;
        padding-bottom: 2.5rem;
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.8) 0%, rgba(37, 117, 252, 0.8) 100%);
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
    padding-top: 20px;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
}

.hero-container h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-gradient-title {
    background: linear-gradient(to bottom, #FFFFFF 0%, #F1F5F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
    text-align: center;
    color: #CBD5E1;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 2.25rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

/* =================================================================
   HERO SECTION - RESPONSIVE SCALING
   ================================================================= */

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        min-height: 75vh;
        padding-top: 120px;
        padding-bottom: 80px;
        background-attachment: scroll;
    }

    .hero-container {
        padding: 0 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-container h1 {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
        margin-bottom: 28px;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        min-height: 80vh;
        padding-bottom: 60px;
        background-attachment: scroll;
    }

    .hero-container {
        padding: 0 24px;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-container h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 18px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 24px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        min-width: 120px;
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        min-height: 85vh;
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-container h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 4.5vw, 1.2rem);
    }

    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        min-width: 100px;
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 140vh;
        padding-bottom: 3rem;
    }

    .hero-container {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-container h1 {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.05rem);
        margin-bottom: 20px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
        margin-top: 30px;
    }

    .hero-buttons .btn {
        min-width: 100px;
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}


/* =================================================================
   ABOUT HERO SECTION
   ================================================================= */

.about-hero,
.events-hero,
.team-hero,
.contact-hero {
    background: transparent;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.about-hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
}

/* PODCAST-INSPIRED SHARED PAGE THEME - replaced by .internal-page and .hero-section / .section-overlay rules */

/* consistent call-to-action style for category badges */
.event-social a,
.about-block .card-icon-container i,
.contact-info-icon i {
    color: var(--accent-violet) !important;
}

/* =================================================================
   BUTTONS
   ================================================================= */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--accent-violet);
}

.btn-secondary:hover {
    color: var(--white);
    background-color: var(--accent-violet);
    border-color: var(--accent-violet);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-violet);
    border: 2px solid var(--accent-violet);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* =================================================================
   SECTION SUBTITLE (مشترك)
   ================================================================= */

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 1.8rem;
    font-size: 1rem;
}

/* =================================================================
   PURPOSE SECTION (Mission & Vision)
   ================================================================= */

.purpose-section {
    background-color: var(--white);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: var(--space-2xl);
}

.purpose-card {
    background-color: var(--light-bg);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.purpose-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--accent-violet);
}

.purpose-card h3 {
    color: var(--primary-purple);
    margin-bottom: var(--space-lg);
    font-size: 1.4rem;
}

.purpose-card p {
    line-height: 1.7;
    margin: 0;
}

/* =================================================================
   WHO WE ARE - 50/50 SPLIT
   ================================================================= */

.split-section {
    background-color: var(--white);
}

.about-section {
    background-color: var(--white);
}

.testimonials-section {
    position: relative;
    background: linear-gradient(180deg, rgba(236, 234, 255, 0.52) 0%, rgba(255, 255, 255, 0.96) 100%);
    overflow: hidden;
}

.testimonials-slider-wrapper {
    margin-top: 52px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.testimonials-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.testimonials-label {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(88, 28, 135, 0.78);
}

.testimonials-header h2 {
    margin-top: 10px;
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 3.5vw, 2.65rem);
    color: #1f2542;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.testimonials-title-gradient {
    background: linear-gradient(
        180deg, #8c3ade 0%, #5b1ca8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonial-card {
    min-width: 0;
    background: rgba(255, 255, 255, 0.66);
    padding: 22px 20px 20px;
    border-radius: 26px;
    border: 1px solid rgba(140, 58, 222, 0.16);
    box-shadow: 0 10px 22px rgba(55, 17, 103, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(55, 17, 103, 0.11);
    border-color: rgba(140, 58, 222, 0.26);
}

.testimonial-card:hover .testimonial-profile img,
.testimonial-card:focus-within .testimonial-profile img {
    transform: scale(1.06);
}

.testimonial-profile {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 8px auto 12px;
    border: 3px solid rgba(140, 58, 222, 0.28);
    box-shadow: 0 10px 24px rgba(55, 17, 103, 0.15);
}

.testimonial-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.testimonial-quote {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(140, 58, 222, 0.14);
    color: var(--accent-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.testimonial-card h3 {
    margin-bottom: 4px;
    color: #1f2542;
    font-size: 1.1rem;
}

.testimonial-role {
    font-weight: 600;
    color: #6e47b5;
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.testimonial-text {
    color: #61667a;
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    min-height: 0;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.22) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.22) 100%);
}

.testimonial-stars,
.testimonial-rating {
    color: #f5b740;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 24px;
    margin-top: 0;
    margin-bottom: 0;
}

.testimonial-stars i,
.testimonial-stars svg,
.testimonial-rating i,
.testimonial-rating svg {
    font-size: 14px;
    line-height: 1;
}

.testimonial-read-more {
    margin-top: auto;
    border: 1px solid rgba(140, 58, 222, 0.28);
    background: rgba(255, 255, 255, 0.7);
    color: #5f37ab;
    border-radius: 999px;
    padding: 9px 17px;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial-read-more:hover,
.testimonial-read-more:focus-visible {
    background: rgba(140, 58, 222, 0.15);
    border-color: rgba(140, 58, 222, 0.45);
    color: #4f2d8f;
}

.testimonial-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 4vw, 24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.testimonial-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.testimonial-modal-backdrop {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 20, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

.testimonial-modal-dialog {
    position: relative;
    width: min(640px, calc(100vw - 24px));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 241, 255, 0.97) 100%);
    border: 1px solid rgba(140, 58, 222, 0.2);
    border-radius: 28px;
    padding: 28px 24px 24px;
    box-shadow: 0 32px 80px rgba(24, 12, 44, 0.36), 0 4px 16px rgba(0,0,0,0.12);
    text-align: center;
    z-index: 99999;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform 0.34s cubic-bezier(0.22,1,0.36,1) 0.05s, opacity 0.28s ease 0.05s;
    max-height: min(88vh, 720px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.testimonial-modal.open .testimonial-modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.testimonial-modal-close {
    position: sticky;
    top: 12px;
    margin-left: auto;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgba(140, 58, 222, 0.12);
    color: #5f37ab;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-modal-profile {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 6px auto 14px;
    border: 3px solid rgba(140, 58, 222, 0.32);
}

.testimonial-modal-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.testimonial-modal-dialog h3 {
    margin: 0;
}

.testimonial-modal-role {
    margin: 6px 0 14px;
    color: #6e47b5;
    font-weight: 600;
}

.testimonial-modal-stars {
    color: #f5b740;
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.testimonial-modal-text {
    margin: 0;
    color: #4d5568;
    line-height: 1.78;
    overflow-wrap: anywhere;
    text-align: left;
}

body.testimonial-modal-open {
    overflow: hidden;
}
html.testimonial-modal-open-html {
    overflow: hidden;
}

@keyframes testimonialFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes testimonialPop {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .testimonials-slider-wrapper {
        margin-top: 40px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .testimonials-slider {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        width: 100%;
        max-width: 100vw;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        overscroll-behavior-x: contain;
        padding: 0 2px 6px;
    }

    .testimonials-slider::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
        background: transparent;
    }

    .testimonials-slider-wrapper,
    .testimonials-slider {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-slider-wrapper::-webkit-scrollbar,
    .testimonials-slider::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .testimonial-card {
        flex: 0 0 auto;
        width: min(68vw, 420px);
        scroll-snap-align: start;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .testimonials-header h2 {
        font-size: clamp(1.45rem, 6.4vw, 2rem);
    }

    .testimonials-slider {
        gap: 14px;
        padding: 0 2px 4px;
    }

    .testimonial-card {
        flex: 0 0 auto;
        width: min(86vw, 360px);
        scroll-snap-align: start;
        padding: 20px 16px 18px;
    }

    .testimonial-modal-dialog {
        width: min(560px, calc(100vw - 20px));
        max-height: min(86vh, 680px);
        padding: 22px 16px 18px;
    }

    .testimonial-modal-close {
        top: 8px;
    }

    .testimonial-modal-profile {
        width: 84px;
        height: 84px;
        margin-top: 12px;
    }

    .testimonial-modal-text {
        line-height: 1.68;
    }
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.split-text {
    padding-right: var(--space-2xl);
}

.split-text h2 {
    text-align: left;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.split-text > p {
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    color: var(--text-secondary);
}

.split-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.split-section:hover .split-image img {
    transform: scale(1.05);
}

/* =================================================================
   PROGRAMS / WHAT WE DO
   ================================================================= */

.programs-section {
    background-color: var(--light-bg);
}

.programs-section .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: var(--space-2xl);
}

.program-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.program-card:hover {
    border-color: var(--primary-start);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.program-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    border-radius: 12px;
    color: var(--primary-start);
    font-size: 2rem;
}

.program-card h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-primary);
}

.program-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.faq-section {
    background-color: var(--white);
}

.faq-section .container {
    max-width: 920px;
    margin: 0 auto;
}

.faq-header {
    max-width: 760px;
    margin: 0 auto 2.3rem;
    text-align: center;
}

.faq-label {
    margin: 0 0 10px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(140, 58, 222, 0.78);
}

.faq-header h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3.2vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-purple);
}

.faq-header .section-subtitle {
    margin: 14px auto 0;
    max-width: 660px;
    font-size: clamp(0.94rem, 1.8vw, 1.02rem);
    font-weight: 400;
    line-height: 1.72;
    color: #736e92;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    max-width: 840px;
    width: 100%;
    margin-top: clamp(1.4rem, 3vw, 2.1rem);
}

.faq-item {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(140,58,222,0.25);
}

.faq-trigger {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-purple);
    transition: background-color 0.25s ease;
}

.faq-trigger:hover {
    background-color: rgba(140,58,222,0.06);
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--accent-violet);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-panel {
    max-height: 260px;
    padding-bottom: 22px;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    padding: 12px 0 0;
}

@media (max-width: 768px) {
    .faq-header {
        margin-bottom: 1.85rem;
    }

    .faq-label {
        margin-bottom: 8px;
        font-size: 0.7rem;
    }

    .faq-header h2 {
        font-size: clamp(1.4rem, 6vw, 1.9rem);
        line-height: 1.24;
    }

    .faq-header .section-subtitle {
        margin-top: 12px;
        max-width: 92%;
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(
        180deg, rgba(140,58,222,0.95), rgba(55,17,103,0.95));
    color: var(--white);
    box-shadow: var(--shadow-lg);
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 120;
    pointer-events: none;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 14px 32px rgba(55,17,103,0.25);
    outline: none;
}

.scroll-to-top i {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
    }
}

/* =================================================================
   EVENTS & ACTIVITIES
   ================================================================= */

.events-activities-section {
    --events-purple-primary: #371167;
    --events-purple-accent: #8c3ade;
    --events-purple-text: #2c1550;
    --events-purple-muted: #655382;
    --events-lavender-pale: #eceaff;
    --events-lavender-light: #f6f3ff;
    background: linear-gradient(180deg, rgba(55, 17, 103, 0.16) 0%, rgba(140, 58, 222, 0.1) 42%, var(--events-lavender-pale) 72%, #ffffff 100%);
}

.home-page .events-activities-section {
    position: relative;
    margin-top: -52px;
    padding-top: 88px;
    border-radius: 34px 34px 0 0;
    box-shadow: 0 -16px 34px rgba(55, 17, 103, 0.08);
    overflow: hidden;
    z-index: 3;
    background: linear-gradient(180deg, #f2eaff 0%, #ece5ff 28%, #f5f1ff 58%, #ffffff 100%);
}

.home-page .events-activities-section h2 {
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.home-page .events-activities-section .section-subtitle {
    margin: 0 auto 4px;
    max-width: 700px;
}

.events-activities-section h2 {
    color: var(--events-purple-text);
}

.events-activities-section .section-subtitle {
    color: var(--events-purple-muted);
}

/* ----------------------------------------------------------------
   Events Slider wrapper
   ---------------------------------------------------------------- */
.events-activities-section .events-slider-wrapper {
    position: relative;
    margin-top: clamp(20px, 3.3vw, 34px);
}

.events-activities-section .events-swiper {
    padding-bottom: 52px;
}

/* ---- Event Card ---- */
.events-activities-section .event-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 22px;
    border: 1px solid rgba(55, 17, 103, 0.08);
    box-shadow: 0 6px 18px rgba(55, 17, 103, 0.09);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.events-activities-section .event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(55, 17, 103, 0.16);
    border-color: rgba(140, 58, 222, 0.32);
}

/* ---- Image block ---- */
.events-activities-section .event-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 22px 22px 0 0;
}

.events-activities-section .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.events-activities-section .event-card:hover .event-image img {
    transform: scale(1.06);
}

/* ---- Category badge (overlaid on image) ---- */
.events-activities-section .event-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(
        180deg, var(--events-purple-primary) 0%, var(--events-purple-accent) 100%);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(55, 17, 103, 0.3);
    pointer-events: none;
}

/* ---- Content block ---- */
.events-activities-section .event-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
    background: #ffffff;
}

.events-activities-section .event-card-title {
    color: var(--events-purple-text);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 11px;
}

/* ---- Date + Location row ---- */
.events-activities-section .event-details-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.events-activities-section .event-detail {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.79rem;
    font-weight: 500;
    color: var(--events-purple-muted);
}

.events-activities-section .event-detail i {
    color: var(--events-purple-accent);
    font-size: 0.75rem;
}

.events-activities-section .event-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4f3e70;
    margin: 0 0 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- CTA button ---- */
.events-activities-section .event-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    margin-top: auto;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(140, 58, 222, 0.42);
    color: var(--events-purple-primary);
    background: rgba(140, 58, 222, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.events-activities-section .event-card-btn i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.events-activities-section .event-card-btn:hover {
    background: var(--events-purple-accent);
    color: #fff;
    border-color: var(--events-purple-accent);
    box-shadow: 0 8px 18px rgba(55, 17, 103, 0.24);
}

.events-activities-section .event-card-btn:hover i {
    transform: translateX(3px);
}

/* ---- Pagination dots ---- */
.events-activities-section .events-pagination {
    text-align: center;
    margin-top: 12px;
}

.events-activities-section .events-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(55, 17, 103, 0.28);
    opacity: 1;
    transition: all 0.3s ease;
}

.events-activities-section .events-pagination .swiper-pagination-bullet-active {
    background: var(--events-purple-accent);
    width: 22px;
    border-radius: 4px;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 768px) {
    .events-activities-section .events-slider-wrapper {
        padding: 0 4px;
    }

    .events-activities-section .event-image {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .events-activities-section .event-image {
        height: 220px;
    }
}

/* =================================================================
   VALUES SECTION (retained core grid styles only)
   ================================================================= */

.values-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 12px 0;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.values-grid::-webkit-scrollbar {
  height: 6px;
}

.values-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.values-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.3), rgba(37, 117, 252, 0.3));
  border-radius: 10px;
}

.values-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.6), rgba(37, 117, 252, 0.6));
}

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  background: linear-gradient(
        180deg, #6a11cb, #2575fc);
  color: var(--white);
  font-size: 1.5rem;
}

.value-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.value-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
  .values-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .values-grid {
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: calc(16px + 40px);
    gap: 14px;
  }
  .our-values-block {
    padding: 28px;
    margin-bottom: 36px;
  }
}

/* =================================================================
   TEAM SECTION
   ================================================================= */

.team-section {
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    padding: 1.5rem;
    text-align: center;
}

.team-member h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary-start);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-divider {
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
}

/* =================================================================
   PODCAST SECTION
   ================================================================= */

.podcast-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.podcast-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.podcast-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.podcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.podcast-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.podcast-card:hover .podcast-overlay {
    opacity: 1;
}

.podcast-content {
    padding: 1.5rem;
}

.podcast-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.podcast-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.podcast-mission {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.mission-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.mission-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

/* =================================================================
   CONTACT SECTION
   ================================================================= */

.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-card p {
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary-start);
    font-weight: 600;
}

.contact-form {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.contact-form .form-row {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    background-color: #f8fafc;
    color: #1e293b;
    font-size: 0.95rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-violet);
    outline: none;
    box-shadow: 0 0 0 3px rgba(140, 58, 222, 0.15);
}

/* =================================================================
   FOOTER
   ================================================================= */

/* =================================================================
   PREMIUM MODERN FOOTER - FIO 2026 STYLE
   ================================================================= */

.fio-footer {
    position: relative;
    margin-top: 0;
    padding: 80px 32px 40px;
    overflow: hidden;
}

.fio-footer-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        #1f0f3f 0%,
        #2c1558 36%,
        #371167 64%,
        #4b1e7b 100%
    );
    z-index: 0;
}

.fio-footer-background::before {
    content: "";
    position: absolute;
    top: -40%;
    right: 0%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(236, 234, 254, 0.16) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.fio-footer-background::after {
    content: "";
    position: absolute;
    bottom: -35%;
    left: -5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(140, 58, 222, 0.24) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.fio-footer-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1.2fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.fio-footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ========== Brand Section ========== */

.fio-brand-section {
    gap: 20px;
}

.fio-brand-logo-wrapper {
    position: relative;
    width: fit-content;
    margin-bottom: 8px;
}

.fio-brand-glow {
    position: absolute;
    inset: -16px;
    background: radial-gradient(circle, rgba(140, 58, 222, 0.08) 0%, transparent 65%);
    border-radius: 12px;
    filter: blur(20px);
    opacity: 0;
    animation: fio-glow-pulse 3.8s ease-in-out infinite;
}

@keyframes fio-glow-pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.fio-brand-logo {
    position: relative;
    z-index: 1;
    display: block;
    height: 54px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fio-brand-logo:hover {
    transform: scale(1.05) translateY(-2px);
}

.fio-brand-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #d5caee;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.2px;
}

/* ========== Social Links ========== */

.fio-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.fio-social-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
}

.fio-social-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24) 0%, transparent 72%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fio-social-icon:hover {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
    color: #6c4df6;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(18, 7, 37, 0.34);
}

.fio-social-icon:hover::before {
    opacity: 1;
}

/* ========== Footer Section Titles ========== */

.fio-footer-title {
    margin: 0;
    padding: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.fio-footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #eceafe 0%, #8C3ADE 100%);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fio-footer-column:hover .fio-footer-title::after {
    width: 100%;
}

/* ========== Footer Links ========== */

.fio-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fio-footer-links li {
    margin: 0;
}

.fio-footer-links a {
    display: inline-flex;
    align-items: center;
    color: #d0c4ea;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.15px;
}

.fio-footer-links a::before {
    content: "";
    position: absolute;
    left: -10px;
    width: 3px;
    height: 3px;
    background: #eceafe;
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.fio-footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.fio-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ========== Contact Section & Cards ========== */

.fio-contact-section {
    gap: 18px;
}

.fio-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fio-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 16px;
    background: rgba(236, 234, 254, 0.08);
    border: 1px solid rgba(236, 234, 254, 0.18);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.fio-contact-card:hover {
    background: rgba(236, 234, 254, 0.14);
    border-color: rgba(236, 234, 254, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(12, 4, 28, 0.34);
}

.fio-contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fio-contact-card:hover .fio-contact-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.32);
    transform: rotate(6px) scale(1.08);
}

/* Footer icon white-style compatibility rules */
.footer-social a,
.footer-contact-icon,
.footer-contact-box i,
.fio-social-icon,
.fio-contact-icon,
.fio-contact-icon i {
    color: #ffffff !important;
}

.footer-social a,
.mobile-footer-social a,
.fio-social-icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.footer-social a i,
.mobile-footer-social a i,
.fio-social-icon i {
    color: #ffffff !important;
    font-size: 18px;
}

.footer-social a:hover,
.mobile-footer-social a:hover,
.fio-social-icon:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
}

.footer-social a:hover i,
.mobile-footer-social a:hover i,
.fio-social-icon:hover i {
    color: #6c4df6 !important;
}

.footer-contact-icon,
.fio-contact-icon {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fio-contact-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.fio-contact-label {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #c9bde6;
}

.fio-contact-value {
    margin: 0;
    font-size: 0.93rem;
    font-weight: 600;
    color: #f6f2ff;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.fio-contact-card:hover .fio-contact-value {
    color: #ffffff;
}

/* ========== Footer Divider ========== */

.fio-footer-divider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(236, 234, 254, 0.26) 18%,
        rgba(236, 234, 254, 0.26) 82%,
        transparent 100%
    );
    margin: 0 auto 40px;
}

/* ========== Copyright Section ========== */

.fio-footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fio-footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #c9bcdf;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.fio-footer:hover .fio-footer-copyright {
    color: #eceafe;
}

/* ========== Responsive Design ========== */

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .fio-footer-container {
        grid-template-columns: 1.6fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .fio-footer {
        padding: 60px 24px 32px;
    }

    .fio-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 36px;
    }

    .fio-footer-column {
        gap: 18px;
    }

    .fio-brand-section {
        text-align: left;
        align-items: flex-start;
    }

    .fio-brand-logo-wrapper {
        margin: 0 0 8px;
    }

    .fio-brand-description {
        max-width: 400px;
        margin: 0;
    }

    .fio-social-links {
        justify-content: flex-start;
        margin-top: 12px;
    }

    .fio-footer-title {
        width: 100%;
        text-align: left;
        padding-bottom: 12px;
    }

    .fio-footer-title::after {
        width: 56px;
        left: 0;
        transform: none;
    }

    .fio-footer-column:hover .fio-footer-title::after {
        width: 74px;
    }

    .fio-footer-links {
        align-items: flex-start;
    }

    .fio-footer-links a {
        justify-content: flex-start;
    }

    .fio-footer-links a:hover {
        transform: translateX(3px);
        color: #ffffff;
    }

    .fio-contact-items {
        gap: 12px;
    }

    .fio-contact-card {
        justify-content: flex-start;
        text-align: left;
        padding: 14px 12px;
    }

    .fio-footer-bottom {
        text-align: left;
    }

    .fio-footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .fio-footer {
        padding: 48px 16px 24px;
    }

    .fio-footer-background::before {
        width: 350px;
        height: 350px;
        top: -45%;
        right: -6%;
    }

    .fio-footer-background::after {
        width: 420px;
        height: 420px;
        bottom: -40%;
        left: -12%;
    }

    .fio-brand-logo {
        height: 48px;
    }

    .fio-brand-description {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .fio-social-links {
        gap: 10px;
    }

    .fio-social-icon {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    .fio-footer-title {
        font-size: 1rem;
    }

    .fio-footer-links a {
        font-size: 0.9rem;
    }

    .fio-contact-card {
        padding: 12px 10px;
        gap: 10px;
    }

    .fio-contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .fio-contact-value {
        font-size: 0.87rem;
    }

    .fio-footer-divider {
        margin-bottom: 32px;
    }

    .fio-footer-copyright {
        font-size: 0.8rem;
    }
}


/* =================================================================
   HOME PAGE HERO - RESPONSIVE SCALING
   ================================================================= */

/* Home hero now uses the same base styles as all other hero sections */

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        min-height: 72vh;
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .about-hero,
    .events-hero,
    .team-hero,
    .contact-hero,
    .contact-hero-section,
    .podcast-hero {
        min-height: 75vh;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero-container {
        padding: 0 18px;
    }
}

@media (max-width: 480px) {
    .home-hero {
        min-height: 80vh;
        padding-bottom: 90px;
    }

    .home-hero .hero-buttons {
        justify-content: center;
        gap: 10px;
    }

    .home-hero .hero-buttons .btn {
        min-width: 100px;
        max-width: none;
        width: auto;
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* =================================================================
   ABOUT PAGE - MODERN DESIGN SECTIONS
   ================================================================= */


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease both;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.15s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.30s;
}

.animate-fade-up.delay-3 {
    animation-delay: 0.45s;
}


.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 0.5rem;
    color: var(--primary-start);
}

.section-header .section-intro {
    margin-bottom: var(--space-2xl);
}

/* Grid Layouts for Delivery */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.delivery-card,
.value-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xl);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delivery-card:nth-child(1) { animation-delay: 0.1s; }
.delivery-card:nth-child(2) { animation-delay: 0.2s; }
.delivery-card:nth-child(3) { animation-delay: 0.3s; }
.delivery-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.delivery-card:hover,
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-start);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.delivery-card h3,
.value-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    margin-top: 0;
}

.delivery-card p,
.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto var(--space-3xl) auto;
    text-align: center;
    line-height: 1.8;
}

.story-timeline {
    display: flex;
    gap: 1rem;
    margin-top: var(--space-2xl);
    padding: 0.25rem 0 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.story-timeline::before {
    display: none;
}

.timeline-item {
    min-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 1.2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-start);
}

.timeline-marker {
    width: 62px;
    height: 62px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
}


.timeline-item:hover .timeline-marker {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.4);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    margin-top: 0;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Mission & Vision Section */
.about-mission-vision {
    background-color: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
}

.mv-card {
    padding: var(--space-2xl);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card {
    background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.08) 0%, rgba(37, 117, 252, 0.04) 100%);
    border-color: rgba(106, 17, 203, 0.2);
}

.vision-card {
    background: linear-gradient(
        180deg, rgba(37, 117, 252, 0.08) 0%, rgba(106, 17, 203, 0.04) 100%);
    border-color: rgba(37, 117, 252, 0.2);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(106, 17, 203, 0.15);
    border-color: var(--primary-start);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--space-xl);
}

.mv-card h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    margin-top: 0;
}

.mv-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Core Goals Section */
.about-goals-section {
    background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.02) 0%, rgba(37, 117, 252, 0.02) 100%);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.goal-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: 16px;
    border: 2px solid var(--border-light);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
    min-height: 300px;
    justify-content: space-between;
}

.goal-card:hover {
    border-color: var(--primary-start);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.15);
    transform: translateY(-8px);
}

.goal-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.goal-card h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0 0 var(--space-md) 0;
    line-height: 1.4;
}

.goal-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--space-lg) 0;
    flex-grow: 1;
}

.goal-icon {
    font-size: 2.5rem;
    color: var(--primary-start);
    margin-top: auto;
    opacity: 0.3;
}

/* Implementation Mechanisms Section */
.about-implementation-section {
    background-color: var(--white);
}

.implementation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.implementation-item {
    background: linear-gradient(
        180deg, var(--white) 0%, rgba(106, 17, 203, 0.02) 100%);
    padding: var(--space-2xl);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.implementation-item:hover {
    border-color: var(--primary-start);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.1);
    transform: translateY(-6px);
}

.impl-step {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
}

.implementation-item h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0 0 var(--space-md) 0;
}

.implementation-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 var(--space-lg) 0;
}

.impl-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
}

.impl-features span {
    display: inline-block;
    background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    color: var(--primary-start);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(106, 17, 203, 0.2);
}

/* Core Values Section */
.about-values-section {
    background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.03) 0%, rgba(37, 117, 252, 0.03) 100%);
}

.values-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.value-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    border-color: var(--primary-start);
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.15);
    transform: translateY(-8px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0 0 var(--space-md) 0;
}

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

/* CTA Section */
.about-cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: var(--white);
    color: var(--primary-start);
}

.cta-buttons .btn-primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

/* =================================================================
   RESPONSIVE - TABLET (1024px)
   ================================================================= */

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section {
        padding: 80px 0;
    }

    .header-container {
        gap: var(--space-lg);
        padding: 0 20px;
    }

    .logo img {
        height: 70px;
    }

    /* إخفاء النافبار وإظهار الهامبرغر */
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    /* الأقسام */
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        gap: 18px;
    }

    .value-item {
        min-width: 240px;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .split-text {
        padding-right: 0;
    }

    .split-text h2 {
        text-align: center;
    }

    .programs-section .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        padding: 0 40px;
    }

    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .podcast-section {
        padding: 80px 0;
    }

    .podcast-mission {
        padding: 60px 0;
    }

    /* About Page Responsive - Tablet */
    .story-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .story-timeline::before {
        display: none;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .goals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .goal-card {
        min-height: auto;
        padding: var(--space-xl);
    }

    .implementation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .values-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .cta-buttons {
        gap: var(--space-md);
    }

    /* About Page Responsive - Tablet */
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .delivery-card,
    .value-card {
        padding: var(--space-lg);
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Story Section Responsive - Tablet */
    .story-part {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .story-left .story-content,
    .story-left .story-image,
    .story-right .story-content,
    .story-right .story-image {
        order: unset;
    }

    .story-content h3 {
        font-size: 1.8rem;
    }

    .story-bullets li {
        font-size: 1rem;
    }
}

/* =================================================================
   RESPONSIVE - MOBILE (768px)
   ================================================================= */

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding: 60px 0;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: var(--space-xl);
    }

    .site-header {
        height: 70px;
        padding: 0;
    }

    .header-container {
        gap: var(--space-md);
        padding: 0 16px;
    }

    .logo img {
        height: 55px;
    }

    .mobile-menu {
        top: 70px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: var(--space-xl);
        min-height: 70vh;
    }

    .hero-container {
        padding: 0 24px;
    }

    .hero-container h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 14px;
    }

    .hero-buttons .btn {
        min-width: 130px;
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .value-card {
        padding: var(--space-lg);
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .split-text h2 {
        text-align: center;
    }

    .split-image {
        border-radius: 16px;
    }

    .programs-section .programs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-card {
        padding: 20px;
    }

    .program-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .slider-nav {
        display: none;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-member {
        padding: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .podcast-section {
        padding: 60px 0;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .podcast-image {
        height: 180px;
    }

    .podcast-mission {
        padding: 40px 0;
    }

    .mission-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 16px;
    }

    .footer-column h4 {
        margin-bottom: var(--space-md);
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* About Page Responsive - Mobile */
    .story-timeline {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
        margin: 0;
    }

    .timeline-item {
        min-width: auto;
        width: 100%;
    }

    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    /* About Page Responsive - Mobile */
    .delivery-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .delivery-card,
    .value-card {
        padding: var(--space-md);
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: var(--space-md);
    }

    .delivery-card h3,
    .value-card h3 {
        font-size: 1.1rem;
    }

    .delivery-card p,
    .value-card p {
        font-size: 0.9rem;
    }

    /* Story Section Responsive - Mobile */
    .story-part {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .story-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .story-bullets li {
        font-size: 1rem;
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .story-bullets li::before {
        font-size: 1.2rem;
    }
}

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: var(--space-xl);
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .goal-card {
        padding: var(--space-lg);
        min-height: auto;
    }

    .goal-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .goal-card h3 {
        font-size: 1.05rem;
    }

    .goal-card p {
        font-size: 0.85rem;
    }

    .goal-icon {
        font-size: 2rem;
    }

    .implementation-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .impl-step {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .implementation-item h3 {
        font-size: 1.1rem;
    }

    .values-card-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .value-card {
        padding: var(--space-lg);
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }

    .cta-buttons .btn {
        width: 100%;
    }

/* =================================================================
   RESPONSIVE - SMALL MOBILE (480px)
   ================================================================= */

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .section {
        padding: 40px 0;
    }

    h2 {
        font-size: 1.4rem;
        margin-bottom: var(--space-lg);
    }

    h3 {
        font-size: 1rem;
    }

    .site-header {
        height: 64px;
    }

    .header-container {
        padding: 0 12px;
    }

    .logo img {
        height: 48px;
    }

    .mobile-menu {
        top: 56px;
    }

    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }

    .hero-section {
        padding-top: 80px;
        padding-bottom: var(--space-lg);
        min-height: 60vh;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-container h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .purpose-card {
        padding: 20px;
    }

    .purpose-card h3 {
        font-size: 1.2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .value-card {
        padding: var(--space-md);
    }

    .value-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: var(--space-md);
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    .program-card {
        padding: 16px;
        gap: var(--space-md);
    }

    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .program-card h3 {
        font-size: 1.05rem;
    }

    .program-card p {
        font-size: 0.85rem;
    }

    .event-card {
        padding: 16px;
    }

    .event-card h3 {
        font-size: 1.05rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-member {
        padding: 0.75rem;
    }

    .team-member h3 {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .podcast-section {
        padding: 40px 0;
    }

    .podcast-image {
        height: 160px;
    }

    .podcast-content {
        padding: 1rem;
    }

    .podcast-content h3 {
        font-size: 1.1rem;
    }

    .podcast-description {
        font-size: 0.85rem;
    }

    .podcast-mission {
        padding: 30px 0;
    }

    .mission-content h2 {
        font-size: 1.4rem;
    }

    .mission-content p {
        font-size: 0.9rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: var(--space-xs);
        font-size: 0.85rem;
    }

    .footer-desc {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    /* About Page Responsive - Small Mobile */
    .story-timeline {
        gap: var(--space-md);
    }

    .timeline-marker {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin-bottom: var(--space-md);
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .mv-card {
        padding: var(--space-lg);
    }

    .mv-card h3 {
        font-size: 1.4rem;
    }

    .mv-card p {
        font-size: 0.9rem;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .goal-card {
        padding: var(--space-md);
    }

    .goal-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .goal-card h3 {
        font-size: 0.95rem;
    }

    .goal-card p {
        font-size: 0.8rem;
    }

    .implementation-item {
        padding: var(--space-lg);
    }

    .impl-step {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .implementation-item h3 {
        font-size: 1rem;
    }

    .implementation-item p {
        font-size: 0.85rem;
    }

    .impl-features span {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .value-card {
        padding: var(--space-md);
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: var(--space-md);
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.8rem;
    }

    .about-highlight-list li {
        padding: var(--space-md);
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    /* About Page Responsive - Small Mobile */
    .delivery-grid,
    .values-grid {
        gap: var(--space-sm);
    }

    .delivery-card,
    .value-card {
        padding: var(--space-sm);
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .delivery-card h3,
    .value-card h3 {
        font-size: 1rem;
    }

    .delivery-card p,
    .value-card p {
        font-size: 0.85rem;
    }

    /* Story Section Responsive - Small Mobile */
    .story-part {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .story-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .story-bullets li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .story-bullets li::before {
        font-size: 1rem;
    }
}

/* =================================================================
   LANDSCAPE MOBILE FIX
   ================================================================= */

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-container h1 {
        font-size: 1.8rem;
    }
}

/* =================================================================
   ABOUT SECTION STYLES
   ================================================================= */

/* About Us Section CSS */
.about-section {
  padding: 90px 0 70px;
  background: #f8fafc;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-block {
  margin-bottom: 64px;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
  background: linear-gradient(
        180deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 18px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-block {
    padding: 32px;
    margin-bottom: 58px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 22px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 0 40px;
  }

  .about-block {
    margin-bottom: 48px;
    padding: 24px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.story-item:hover {
  transform: translateX(8px);
}

.story-icon {
  font-size: 2rem;
  color: #6a11cb;
  min-width: 50px;
}

.story-content h3 {
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 8px;
}

.story-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
}

.mission-card, .vision-card {
  text-align: center;
  padding: 40px;
  background: linear-gradient(
        180deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
}

.card-icon {
  font-size: 3rem;
  color: #2575fc;
  margin-bottom: 20px;
}

.mission-card p, .vision-card p {
  font-size: 1.2rem;
  color: #2d3748;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.goals-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.goal-item {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #6a11cb;
  transition: transform 0.3s ease;
}

.goal-item:hover {
  transform: translateY(-3px);
}

.goal-number {
  font-size: 2rem;
  font-weight: 700;
  color: #6a11cb;
  margin-bottom: 12px;
}

.goal-item h4 {
  font-size: 1.1rem;
  color: #1a202c;
  margin-bottom: 8px;
}

.goal-item p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
}

.mechanisms-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-3px);
}

.step-icon {
  font-size: 2.5rem;
  color: #2575fc;
  margin-bottom: 16px;
}

.step-item h4 {
  font-size: 1.1rem;
  color: #1a202c;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
}



/* Responsive Design */
@media (max-width: 768px) {
  .about-block {
    padding: 24px;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .goals-list, .mechanisms-steps, .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-card, .vision-card {
    padding: 24px;
  }

  .card-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }

  .about-block {
    padding: 20px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* ==========================================
   WHO WE ARE + OUR STORY IMPROVEMENTS
   ========================================== */

.who-we-are-block,
.our-story-block {
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(100, 116, 139, 0.15);
  max-width: 980px;
  margin: 0 auto 48px auto;
}

.who-we-are-block .section-title,
.our-story-block .section-title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}

.who-we-are-text {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
}

.story-simple {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.72;
}

.story-simple p {
  margin: 0 0 14px;
}

.story-simple p:last-child {
  margin-bottom: 0;
}

.story-simple .story-part {
  margin-bottom: 20px;
}

.story-simple h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--text-primary);
}

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
  .story-simple {
    font-size: 1.03rem;
  }

  .who-we-are-block,
  .our-story-block {
    padding: 30px;
    margin-bottom: 36px;
  }
}

@media (max-width: 768px) {
  .story-simple {
    font-size: 1rem;
  }

  .who-we-are-block,
  .our-story-block {
    padding: 24px;
    margin-bottom: 30px;
  }

  .who-we-are-text {
    font-size: 1rem;
  }
}

/* =================================================================
   ABOUT PAGE SPECIFIC STYLES - ENHANCED
   ================================================================= */

/* Integrated Purpose & Story Sliding Section */
.integrated-sliding-section {
  margin-bottom: 100px;
  padding: 60px 0;
  text-align: center;
}

.section-subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 50px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sliding Square Grid Container */
.sliding-square-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sliding Card Base Styles */
.sliding-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: default;
  overflow: hidden;
  position: relative;
}

.sliding-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.05), rgba(37, 117, 252, 0.05));
  transition: left 0.5s ease;
  z-index: 0;
}

.sliding-card:hover::before {
  left: 0;
}

.sliding-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.sliding-card .card-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.15), rgba(37, 117, 252, 0.15));
  border-radius: 50%;
  font-size: 36px;
  color: var(--primary-start);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.sliding-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sliding-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Sliding Animation - Slide In Effect */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered slide-in animation for each card */
.slide-in-card {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-card[data-slide-index="0"].animated {
  animation: slideInLeft 0.6s ease-out 0.2s forwards;
}

.slide-in-card[data-slide-index="1"].animated {
  animation: slideInLeft 0.6s ease-out 0.4s forwards;
}

.slide-in-card[data-slide-index="2"].animated {
  animation: slideInLeft 0.6s ease-out 0.6s forwards;
}

/* Mobile Responsiveness for Sliding Section */
@media (max-width: 768px) {
  .integrated-sliding-section {
    padding: 40px 0;
    margin-bottom: 60px;
  }

  .section-subtitle {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .sliding-square-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .sliding-card {
    padding: 30px;
    aspect-ratio: auto;
    min-height: 300px;
  }

  .sliding-card .card-icon-container {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .sliding-card h3 {
    font-size: 1.2rem;
  }

  .sliding-card p {
    font-size: 0.95rem;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .sliding-square-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .sliding-card {
    padding: 20px;
    min-height: 250px;
    border-radius: 16px;
  }

  .sliding-card .card-icon-container {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .sliding-card h3 {
    font-size: 1.1rem;
  }

  .sliding-card p {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

/* Icon Container Standardization (55px) */
.card-icon-container,
.story-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
  border-radius: 12px;
  margin: 0 auto 20px auto;
  font-size: 28px;
  color: var(--primary-start);
  flex-shrink: 0;
}

.value-card .card-icon-container,
.mechanism-card .card-icon-container {
  margin-bottom: 16px;
}

/* Purpose Cards - Side by Side */
.purpose-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.purpose-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border-top: 4px solid var(--primary-start);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.purpose-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purpose-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

/* Goals Grid - Square Row Layout */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.goal-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  border-left: 5px solid var(--primary-start);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.goal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.goal-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.goal-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.goal-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mechanisms Grid - Square Row Layout */
.mechanisms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.mechanism-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.mechanism-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.mechanism-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mechanism-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Values Horizontal Scroll Section */
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  width: 260px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  min-height: 220px;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-start);
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 8px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Story Timeline Enhancement */
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.05), rgba(37, 117, 252, 0.05));
  border-radius: 12px;
  border-left: 4px solid var(--primary-start);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.story-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.story-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section Title Gradient */
.section-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .purpose-cards,
  .goals-grid,
  .mechanisms-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-item {
    flex-direction: column;
    gap: 15px;
  }

  .story-icon-container {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 0;
  }

  .card-icon-container {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 0 auto 15px auto;
  }

  .purpose-card,
  .goal-card,
  .mechanism-card,
  .value-card {
    padding: 20px;
  }

  .goal-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .purpose-card,
  .goal-card,
  .mechanism-card,
  .value-card {
    padding: 16px;
  }

  .card-icon-container,
  .story-icon-container {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .goal-number {
    font-size: 1.75rem;
  }

  .purpose-card h3,
  .goal-card h3,
  .mechanism-card h3,
  .value-card h3 {
    font-size: 1.1rem;
  }
}

/* =================================================================
   Our Team Interactive Cards
   ================================================================= */
.team-hero {
    padding: 100px 1rem 40px;
    text-align: center;
    background: linear-gradient(
        180deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
}
.team-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
    font-weight: 800;
}
.team-hero p {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    margin: 0 auto;
    max-width: 760px;
    line-height: 1.5;
    opacity: 0.95;
}
.team-section {
    padding: 60px 1rem 100px;
    background: #f8fafc;
}
.team-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 2.25rem;
}
.team-card {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(37, 53, 81, 0.08);
    overflow: hidden;
    padding: 1.75rem 1.25rem 1.5rem;
    transition: all 0.4s ease-in-out;
}
.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
}
.team-info-btn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    top: auto;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(
        180deg, rgba(106,17,203,0.95), rgba(37,117,252,0.95));
    color: #fff;
    display: grid;
    place-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(37, 117, 252, 0.3);
    transition: all 0.4s ease-in-out;
}
.team-photo-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.1rem;
    border: 2px solid #6a11cb;
}
.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-card-body h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
    color: #0f172a;
}
.team-role {
    color: #4b5563;
    font-size: 0.95rem;
    margin-top: 0.2rem;
    font-weight: 500;
}
.team-info-btn {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(
        180deg, rgba(106,17,203,0.95), rgba(37,117,252,0.95));
    color: #fff;
    display: grid;
    place-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(37, 117, 252, 0.3);
    transition: transform 0.2s ease;
}
.team-info-btn:hover,
.team-info-btn:focus {
    transform: scale(1.08);
    outline: none;
}
.team-bio {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0.9rem;
    padding: 0 0.25rem;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}
.team-bio.active {
    max-height: 350px;
    opacity: 1;
}
.team-bio p {
    margin: 0.45rem 0;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.65;
}
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .team-section {
        padding: 80px 1rem 100px;
    }
}
@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .team-section {
        padding: 100px 1rem 120px;
    }
}


/* =================================================================
   Events Page Cards
   ================================================================= */
.events-hero {
    text-align: center;
    background: linear-gradient(
        180deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 90px 1rem 40px;
}
.events-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.6rem;
}

/* =================================================================
   IMPACT IN NUMBERS SECTION
   ================================================================= */

.impact-numbers-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
    background:
        radial-gradient(circle at top right, rgba(140,58,222,0.08), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8f6ff 35%, #f1edff 70%, #eceafe 100%);
    isolation: isolate;
}

/* Keep decorative background layers disabled for a cleaner, content-first layout */
.impact-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.18;
    pointer-events: none;
}

.impact-bg-orb--1 {
    display: block;
    width: 220px;
    height: 220px;
    top: -64px;
    left: -72px;
    background: radial-gradient(circle, rgba(140,58,222,0.22) 0%, rgba(140,58,222,0) 72%);
}

.impact-bg-orb--2 {
    display: block;
    width: 250px;
    height: 250px;
    bottom: -88px;
    right: -92px;
    background: radial-gradient(circle, rgba(124,108,242,0.18) 0%, rgba(124,108,242,0) 74%);
}

.impact-bg-orb--3 {
    display: block;
    width: 170px;
    height: 170px;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(140,58,222,0.12) 0%, rgba(140,58,222,0) 74%);
}

.impact-bg-grid {
    display: block;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(140,58,222,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140,58,222,0.028) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
    opacity: 0.24;
}

.impact-numbers-section .container {
    position: relative;
    z-index: 1;
}

/* Fade edge overlays – show scrollable content hint */
.impact-numbers-section .container::before,
.impact-numbers-section .container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    pointer-events: none;
    z-index: 4;
    transition: opacity 0.28s ease;
}

.impact-numbers-section .container::before {
    display: none;
}

.impact-numbers-section .container::after {
    right: 0;
    background: linear-gradient(to left, rgba(236, 234, 254, 0.86) 20%, transparent 80%);
    opacity: 0.5;
}

.impact-numbers-section.impact-scrolled .container::before { opacity: 0; }
.impact-numbers-section.impact-at-end .container::after { opacity: 0; }

/* =================================================================
   OUR PARTNERS SECTION
   ================================================================= */

.partners-section {
    position: relative;
    padding: 78px 0;
    background: linear-gradient(160deg, #f8f7ff 0%, #ffffff 60%, #f3efff 100%) !important;
}

.partners-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.3fr);
    gap: 34px;
    align-items: center;
}

.partners-content {
    max-width: 420px;
}

.partners-title {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #2a0d56;
    text-align: left;
}

.partners-subtitle {
    margin: 0;
    color: #62577b;
    max-width: 420px;
    font-size: 1rem;
    line-height: 1.75;
}

.partners-marquee {
    width: 100%;
    display: grid;
    gap: 14px;
    overflow: hidden;
}

.partners-marquee-row {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.partners-marquee-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    animation: partnersMarqueeLeft 28s linear infinite;
}

.partners-marquee-row--rtl .partners-marquee-track {
    animation-name: partnersMarqueeRight;
    animation-duration: 32s;
}

.partners-marquee:hover .partners-marquee-track {
    animation-play-state: paused;
}

@keyframes partnersMarqueeLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes partnersMarqueeRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.partner-logo-card {
    width: 170px;
    min-width: 170px;
    min-height: 90px;
    border-radius: 14px;
    border: 1px solid rgba(55, 17, 103, 0.05);
    background: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    box-shadow: 0 2px 8px rgba(38, 22, 74, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.partner-logo-img-wrap {
    --logo-max-w: 82%;
    --logo-max-h: 72%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 150px;
    height: 66px;
    margin: 0 auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
}

.partner-logo-img {
    width: auto;
    height: auto;
    max-width: var(--logo-max-w);
    max-height: var(--logo-max-h);
    object-fit: contain;
    display: block;
    filter: grayscale(1) opacity(0.8);
    transition: filter 0.3s ease;
    mix-blend-mode: multiply;
}

/* Shape-aware fitting for visual parity */
.partner-logo-img-wrap--wide {
    --logo-max-w: 90%;
    --logo-max-h: 58%;
}

.partner-logo-img-wrap--square {
    --logo-max-w: 64%;
    --logo-max-h: 78%;
}

.partner-logo-img-wrap--circle {
    --logo-max-w: 62%;
    --logo-max-h: 76%;
}

.partner-logo-img-wrap--tall {
    --logo-max-w: 54%;
    --logo-max-h: 84%;
}

.partner-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(38, 22, 74, 0.1);
    border-color: rgba(140, 58, 222, 0.24);
    background: rgba(255, 255, 255, 0.96);
}

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

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .partners-section {
        padding: 66px 0;
    }

    .partners-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .partners-content {
        max-width: 100%;
    }

    .partners-title,
    .partners-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 768px) {
    .partners-section {
        padding: 58px 0;
    }

    .partner-logo-card {
        width: 156px;
        min-width: 156px;
        min-height: 82px;
        padding: 8px 9px;
    }

    .partner-logo-img-wrap {
        max-width: 136px;
        height: 60px;
        border-radius: 10px;
    }

    .partners-marquee {
        gap: 12px;
    }

    .partners-marquee-track {
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .partners-layout {
        gap: 18px;
    }

    .partners-subtitle {
        margin-bottom: 0;
    }

    .partners-marquee-row--rtl {
        display: none;
    }

    .partners-marquee-track {
        animation-duration: 24s;
    }

    .partner-logo-card {
        width: 148px;
        min-width: 148px;
    }

    .partner-logo-img-wrap {
        max-width: 126px;
        height: 56px;
    }
}

/* =================================================================
   PODCAST SERIES SECTION
   ================================================================= */

.podcast-series-section {
    position: relative;
    padding: 78px 0;
    background: linear-gradient(180deg, #eceafe 0%, #f4f0ff 55%, #ffffff 100%) !important;
    overflow: hidden;
}

.podcast-series-section::before {
    content: '';
    position: absolute;
    inset: -20% auto auto -14%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 58, 222, 0.18) 0%, rgba(140, 58, 222, 0) 72%);
    pointer-events: none;
}

.podcast-series-header {
    max-width: 860px;
    margin: 0 auto 36px;
    text-align: center;
}

.podcast-series-label {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(88, 28, 135, 0.82);
}

.podcast-series-header h2 {
    margin: 0;
    margin-top: 10px;
    font-size: clamp(1.75rem, 3.8vw, 2.6rem);
    color: #1f2542;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.podcast-series-subtitle {
    margin: 14px 0 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #5f5a75;
    line-height: 1.72;
}

.podcast-series-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.podcast-series-slider-wrap {
    position: relative;
}

.podcast-series-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid transparent;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(248, 245, 255, 0.92)) padding-box,
        linear-gradient(145deg, rgba(140, 58, 222, 0.26), rgba(55, 17, 103, 0.08)) border-box;
    box-shadow: 0 8px 18px rgba(55, 17, 103, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-series-card:hover,
.podcast-series-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(55, 17, 103, 0.1);
}

.podcast-cover-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.podcast-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.podcast-type-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(236, 234, 254, 0.94), rgba(187, 147, 240, 0.95));
    border: 1px solid rgba(140, 58, 222, 0.24);
    color: #4f2d8f;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
}

.podcast-icon-overlay {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(140, 58, 222, 0.25);
    color: #6a36bb;
    box-shadow: 0 6px 14px rgba(55, 17, 103, 0.16);
}

.podcast-series-card-body {
    padding: 14px 14px 14px;
    display: flex;
    flex-direction: column;
    min-height: 1px;
}

.podcast-series-card h3 {
    margin-bottom: 6px;
    color: #1f2542;
    font-size: 1.08rem;
}

.podcast-series-desc {
    margin: 0 0 7px;
    color: #64607c;
    font-size: 0.92rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.podcast-series-host {
    margin: 0 0 12px;
    color: #6d49b2;
    font-size: 0.86rem;
    font-weight: 600;
}

.podcast-series-actions {
    margin-top: auto;
    display: block;
}

.podcast-youtube-btn {
    width: 100%;
    min-height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(140, 58, 222, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.podcast-youtube-btn {
    background: linear-gradient(135deg, rgba(140, 58, 222, 0.12), rgba(55, 17, 103, 0.12));
    color: #4f2d8f;
    text-decoration: none;
}

.podcast-youtube-btn:hover,
.podcast-youtube-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(55, 17, 103, 0.12);
    border-color: rgba(140, 58, 222, 0.46);
}

.podcast-youtube-btn i {
    color: #c91e62;
}

@media (max-width: 1024px) {
    .podcast-series-slider-wrap {
        margin: 0 -8px;
        padding: 0 8px;
    }

    .podcast-series-slider-wrap::before,
    .podcast-series-slider-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 22px;
        z-index: 2;
        pointer-events: none;
    }

    .podcast-series-slider-wrap::before {
        left: 0;
        background: linear-gradient(90deg, rgba(244, 240, 255, 0.98), rgba(244, 240, 255, 0));
    }

    .podcast-series-slider-wrap::after {
        right: 0;
        background: linear-gradient(270deg, rgba(244, 240, 255, 0.98), rgba(244, 240, 255, 0));
    }

    .podcast-series-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 0 12px 8px;
        cursor: grab;
    }

    .podcast-series-grid::-webkit-scrollbar {
        display: none;
    }

    .podcast-series-grid.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
        user-select: none;
        -webkit-user-select: none;
    }

    .podcast-series-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 280px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .podcast-series-section {
        padding: 62px 0;
    }

    .podcast-series-grid {
        gap: 16px;
        padding: 0 10px 8px;
    }

    .podcast-series-actions {
        width: 100%;
    }

    .podcast-series-card {
        flex-basis: min(82vw, 296px);
        min-width: min(82vw, 296px);
    }
}

@media (max-width: 480px) {
    .podcast-series-header {
        margin-bottom: 30px;
    }

    .podcast-series-subtitle {
        line-height: 1.66;
    }

    .podcast-series-card-body {
        padding: 18px 14px 14px;
    }

    .podcast-series-grid {
        gap: 14px;
        padding: 0 8px 8px;
    }

    .podcast-series-card {
        flex-basis: min(84vw, 272px);
        min-width: min(84vw, 272px);
    }
}

/* ---- Header ---- */
.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8C3ADE;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(140,58,222,0.14);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.impact-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    line-height: 1.18;
    color: #371167;
}

.impact-subtitle {
    font-size: 1rem;
    color: #6E6293;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ---- Slider Track ---- */
.impact-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    /* right padding reveals a partial next card as scroll hint */
    padding: 8px 40px 28px 0;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
}

.impact-grid::-webkit-scrollbar {
    display: none;
}

.impact-grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
    -webkit-user-select: none;
}

/* ---- Single Card ---- */
.impact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    /* Desktop: ~3.4 cards visible */
    flex: 0 0 calc(27% - 14px);
    min-width: 220px;
    min-height: 278px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(140,58,222,0.10);
    border-radius: 24px;
    padding: 28px 24px 24px;
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease;
    cursor: default;
}

/* Top-left inner glow */
.impact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, rgba(255, 255, 255, 0.34) 0%, transparent 62%);
    border-radius: inherit;
    pointer-events: none;
}

/* Bottom-right accent line */
.impact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(140,58,222,0.24), transparent);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.impact-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.78);
    border-color: rgba(140,58,222,0.16);
    box-shadow: 0 8px 24px rgba(55,17,103,0.06);
}

.impact-card:hover::after {
    opacity: 1;
}

/* Corner badge */
.impact-card-badge {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(55,17,103,0.46);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(140,58,222,0.12);
    padding: 3px 9px;
    border-radius: 50px;
    line-height: 1.4;
}

/* Icon wrapper */
.impact-card-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: linear-gradient(
        180deg, rgba(140,58,222,0.2) 0%, rgba(55,17,103,0.2) 100%);
    border: 1px solid rgba(140,58,222,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #8C3ADE;
    box-shadow: 0 4px 12px rgba(55,17,103,0.08);
    transition: background 0.32s ease, transform 0.32s ease, box-shadow 0.32s ease;
}

.impact-card:hover .impact-card-icon-wrap {
    background: linear-gradient(
        180deg, rgba(140,58,222,0.28) 0%, rgba(55,17,103,0.24) 100%);
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(55,17,103,0.12);
}

/* Number stat row */
.impact-stat {
    display: flex;
    align-items: baseline;
    gap: 1px;
    margin-bottom: 10px;
    line-height: 1;
}

.impact-count {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: #371167;
    font-variant-numeric: tabular-nums;
}

.impact-plus {
    font-size: 1.5rem;
    font-weight: 800;
    color: #8C3ADE;
    line-height: 1;
    margin-left: 2px;
}

/* Card title */
.impact-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #371167;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Card description */
.impact-card-desc {
    font-size: 0.84rem;
    color: #6E6293;
    line-height: 1.65;
    margin: 0;
    margin-top: auto;
    padding-top: 6px;
}

/* ---- Slider Navigation ---- */
.impact-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.impact-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(140,58,222,0.16);
    background: rgba(255,255,255,0.72);
    color: #6E6293;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.impact-nav-btn:hover:not(:disabled) {
    background: rgba(140,58,222,0.12);
    border-color: rgba(140,58,222,0.24);
    color: #371167;
}

.impact-nav-btn:disabled {
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
}

.impact-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.impact-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(140,58,222,0.24);
    cursor: pointer;
    transition: all 0.28s ease;
    padding: 0;
    flex-shrink: 0;
}

.impact-dot.active {
    width: 16px;
    border-radius: 4px;
    background: #a855f7;
}

/* ---- Responsive: Tablet (900px and below) ---- */
@media (max-width: 900px) {
    .impact-numbers-section {
        padding: 72px 0 80px;
    }

    .impact-card {
        /* ~2.3 cards visible */
        flex: 0 0 calc(43% - 10px);
        min-width: 200px;
    }

    .impact-count {
        font-size: 2rem;
    }

    .impact-plus {
        font-size: 1.3rem;
    }
}

/* ---- Responsive: Mobile (580px and below) ---- */
@media (max-width: 580px) {
    .impact-numbers-section {
        padding: 56px 0 64px;
    }

    .impact-header {
        margin-bottom: 32px;
        padding: 0 4px;
    }

    .impact-title {
        font-size: 1.45rem;
        letter-spacing: 0.03em;
    }

    .impact-subtitle {
        font-size: 0.9rem;
    }

    .impact-grid {
        gap: 14px;
        padding-right: 20px;
        padding-left: 2px;
    }

    .impact-card {
        /* ~1.2 cards visible */
        flex: 0 0 min(78vw, 270px);
        min-width: 220px;
        padding: 24px 20px 20px;
    }

    .impact-count {
        font-size: 2.1rem;
    }

    .impact-plus {
        font-size: 1.25rem;
    }

    .impact-slider-nav {
        gap: 12px;
    }

    .impact-dots {
        gap: 6px;
    }
}
.events-hero p {
    color: #e2e8f0;
    margin: 0 auto;
    max-width: 760px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}
.events-page {
    padding: 70px 1rem 100px;
    background: #f8fafc;
}
.events-page .section-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}
.event-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    border: 1px solid rgba(37, 53, 81, 0.08);
    transition: all 0.4s ease-in-out;
}
.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.14);
}
.event-image {
    height: 220px;
    overflow: hidden;
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1rem 0;
    gap: 0.7rem;
}
.event-date,
.event-category {
    font-size: 0.88rem;
    font-weight: 600;
}
.event-date {
    color: #64748b;
}
.event-category {
    color: #fff;
    background: linear-gradient(
        180deg, #6a11cb 0%, #2575fc 100%);
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
}
.event-card h3 {
    margin: 0.65rem 1rem 0.5rem;
    font-size: 1.25rem;
    color: #0f172a;
}
.event-card p {
    margin: 0 1rem 1rem;
    color: #475569;
    line-height: 1.5;
    font-size: 0.95rem;
}
.event-social {
    display: flex;
    gap: 0.6rem;
    padding: 0 1rem 1rem;
}
.event-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        180deg, rgba(106,17,203,0.2), rgba(37,117,252,0.2));
    color: #4f46e5;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    font-size: 1rem;
}
.event-social a:hover {
    background: linear-gradient(
        180deg, #6a11cb, #2575fc);
    color: #ffffff;
    transform: translateY(-2px);
}
@media (min-width: 768px) {
    .events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .events-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* =================================================================
   EVENTS PAGE - SQUARE GRID CARD LAYOUT
   ================================================================= */
.events-hero {
    background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.9), rgba(37, 117, 252, 0.9));
    color: #ffffff;
    padding: 90px 0 60px;
    text-align: center;
}
.events-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}
.events-hero p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 680px;
    margin: 0 auto;
}
.events-page {
    background-color: var(--light-bg);
    padding: 60px 0 80px;
}
.events-page .events-filter-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
    margin-bottom: 28px;
    padding: 22px;
    border-radius: 20px;
    background-color: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-sm);
}
.events-page .filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.events-page .filter-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
}
.events-page .filter-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.events-page .filter-input:focus {
    outline: none;
    border-color: var(--accent-violet);
    box-shadow: 0 0 0 4px rgba(140, 58, 222, 0.08);
}
.events-page .filter-actions {
    display: flex;
    align-items: flex-end;
}
.events-page .filter-actions .btn {
    width: 100%;
    padding: 15px 22px;
}
.events-page .event-location {
    margin: 0 1rem 0.85rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}
.events-page .no-results-message {
    margin: 0 0 20px;
    padding: 18px 20px;
    border-radius: 16px;
    background-color: rgba(140,58,222,0.08);
    color: var(--primary-purple);
    text-align: center;
    font-size: 0.98rem;
    border: 1px solid rgba(140,58,222,0.18);
}
.events-page .events-statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 32px 0 20px;
    padding: 24px;
    border-radius: 20px;
    background-color: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-sm);
}
.events-page .stat-item {
    text-align: center;
}
.events-page .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}
.events-page .stat-item:hover .stat-number {
    transform: scale(1.05);
}
.events-page .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 16px;
}
.event-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.85);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.14);
}
.event-image {
    width: 100%;
    min-height: 150px;
    overflow: hidden;
    position: relative;
}
.event-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.event-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 14px 18px 0;
}
.event-date {
    color: #8491a6;
    font-weight: 500;
    font-size: 0.92rem;
}
.event-category {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    background: linear-gradient(
        180deg, #6a11cb, #2575fc);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.event-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 12px 18px 8px;
}
.event-card p {
    color: #64748b;
    font-size: 0.97rem;
    line-height: 1.6;
    margin: 0 18px 16px;
}
.event-social {
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
    padding: 12px 18px;
    display: flex;
    justify-content: center;
    gap: 14px;
}
.event-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.event-social a:hover {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(
        180deg, #6a11cb, #2575fc);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.28);
}
.event-social i {
    font-size: 1rem;
}

@media screen and (max-width: 980px) {
    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .events-page .events-filter-bar {
        grid-template-columns: 1fr 1fr;
    }
    .events-page .events-statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    .events-page .events-filter-bar {
        grid-template-columns: 1fr;
    }
    .events-page .filter-actions {
        align-items: stretch;
    }
    .events-page .filter-actions .btn {
        width: 100%;
    }
    .header-container {
        padding: 0 16px;
    }
    .event-image img {
        height: 200px;
    }
    .events-hero {
        padding: 70px 0 40px;
    }
    .events-hero h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding-top: 72px;
    }
    .event-card {
        border-radius: 16px;
    }
    .event-card h3 {
        font-size: 1.1rem;
    }
    .event-card p {
        font-size: 0.95rem;
    }
}




/* Responsive adjustments for event cards */
@media (max-width: 768px) {
    .event-image {
        height: 160px;
    }
    
    .event-meta {
        padding: 12px 16px 0;
        gap: 6px;
    }
    
    .event-card .card-category {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .event-card .event-date {
        font-size: 0.85rem;
    }
    
    .event-card h3 {
        font-size: 1.1rem;
        margin: 10px 16px 6px;
    }
    
    .event-card p {
        margin: 0 16px 12px;
        font-size: 0.9rem;
    }
    
    .card-btn {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 12px;
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .event-image {
        height: 140px;
    }
    
    .event-meta {
        padding: 10px 12px 0;
    }
    
    .event-card .card-category {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .event-card h3 {
        font-size: 1rem;
        margin: 8px 12px 4px;
    }
    
    .event-card p {
        margin: 0 12px 10px;
        font-size: 0.88rem;
    }
    
    .card-btn {
        margin-left: 12px;
        margin-right: 12px;
        margin-bottom: 10px;
        padding: 7px 12px;
        font-size: 0.8rem;
    }
}
/* Override animations for values-section cards */
.values-section .value-card:nth-child(1),
.values-section .value-card:nth-child(2),
.values-section .value-card:nth-child(3),
.values-section .value-card:nth-child(4) {
    animation: none;
    opacity: 1;
    transform: none;
}

/* Contact Page Specific Styles */
.contact-hero-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 150px 0;
  overflow: hidden;
  background: linear-gradient(
        180deg, rgba(106, 17, 203, 0.8) 0%, rgba(37, 117, 252, 0.8) 100%);
}

.contact-hero-section h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.contact-hero-section .hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.contact-details-form-section {
  background-color: var(--white);
  padding: 100px 0;
}

.contact-details-form-container {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(220px, 1fr);
  gap: 60px;
  align-items: flex-start;
  max-width: 1180px;
  margin: 0 auto;
}

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
  .contact-details-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form-section {
  display: flex;
  flex-direction: column;
}

/* =================================================================
   STORIES & IMPACT SECTION
   ================================================================= */

.stories-impact-section {
  background: linear-gradient(160deg, #f7f5ff 0%, #ede9ff 55%, #f3f0ff 100%);
  position: relative;
  overflow: hidden;
}

.stories-impact-section::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(140, 58, 222, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stories-impact-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(55, 17, 103, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Header ---- */
.stories-header {
  text-align: center;
  margin-bottom: 56px;
}

.stories-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-violet);
  background: rgba(140, 58, 222, 0.09);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
  border: 1px solid rgba(140, 58, 222, 0.18);
}

.stories-title {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  color: var(--primary-purple);
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.22;
}

.stories-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stories-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 34px;
  line-height: 1.75;
}

/* ---- CTA Button ---- */
.stories-cta-btn {
  display: inline-block;
  background: rgba(140, 58, 222, 0.09);
  color: var(--accent-violet);
  border: 1.5px solid rgba(140, 58, 222, 0.28);
  padding: 13px 38px;
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.32s ease, color 0.32s ease, box-shadow 0.32s ease, transform 0.28s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.stories-cta-btn:hover {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(140, 58, 222, 0.3);
}

/* ---- Cards Grid ---- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
    margin-bottom: 0;
}

/* ---- Story Card ---- */
.story-card {
    --story-image-position: center;
    --story-image-scale: 1;
    --story-image-hover-scale: 1.08;
    --story-avatar-position: center;
    --story-avatar-scale: 1;
  background: #fff;
  border-radius: 22px;
  overflow: visible;
  box-shadow: 0 4px 22px rgba(55, 17, 103, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.story-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(55, 17, 103, 0.15);
}

/* Card Image */
.story-card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  height: 220px;
}

.story-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
    object-position: var(--story-image-position);
    transform: scale(var(--story-image-scale));
    transform-origin: center;
  transition: transform 0.55s ease;
}

.story-card-image img,
.success-card-image img,
.influencer-card-image img,
.card-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease;
}

.story-card:hover .story-card-image {
    transform: scale(var(--story-image-hover-scale));
}

.story-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(55, 17, 103, 0) 30%, rgba(55, 17, 103, 0.52) 100%);
}

/* Category Tag */
.story-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Avatar */
.story-card-avatar-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(220px - 30px);
  width: 62px;
  height: 62px;
    aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(55, 17, 103, 0.18);
  overflow: hidden;
  z-index: 2;
  background: var(--soft-lavender);
}

.story-card-avatar {
  width: 100%;
  height: 100%;
    aspect-ratio: 1 / 1;
  object-fit: cover;
    object-position: var(--story-avatar-position);
    border-radius: 50%;
    transform: scale(var(--story-avatar-scale));
    transform-origin: center;
}

.story-avatar img,
.profile-circle img,
.card-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.stories-grid .story-card:nth-child(1) {
        --story-image-position: center;
    --story-image-scale: 1.02;
    --story-image-hover-scale: 1.1;
        --story-avatar-position: center top;
        --story-avatar-scale: 1.08;
}

.stories-grid .story-card:nth-child(2) {
        --story-image-position: center;
        --story-image-scale: 1.03;
        --story-image-hover-scale: 1.09;
        --story-avatar-position: center 20%;
        --story-avatar-scale: 1.18;
}

.stories-grid .story-card:nth-child(3) {
        --story-image-position: center top;
        --story-image-scale: 1.02;
        --story-image-hover-scale: 1.08;
        --story-avatar-position: center;
        --story-avatar-scale: 1;
}

.stories-grid .story-card:nth-child(4) {
        --story-image-position: center 35%;
        --story-image-scale: 1.02;
    --story-image-hover-scale: 1.09;
        --story-avatar-position: center top;
        --story-avatar-scale: 1.08;
}

/* Card Body */
.story-card-body {
  padding: 50px 22px 28px;
  text-align: center;
}

.story-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 5px;
}

.story-card-role {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* Read More */
.story-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--accent-violet);
  transition: gap 0.26s ease, color 0.26s ease;
}

.story-read-more i {
  font-size: 0.75rem;
  transition: transform 0.26s ease;
}

.story-read-more:hover {
  color: var(--primary-purple);
  gap: 11px;
}

.story-read-more:hover i {
  transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stories-grid {
    display: flex;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100vw;
    overflow-x: auto;
        overflow-y: hidden;
    gap: 16px;
        padding: 0 2px 6px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        overscroll-behavior-x: contain;
        margin-bottom: 0;
        cursor: grab;
    }

    .stories-grid.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
    }

    .stories-grid::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
  }

  .story-card {
        flex: 0 0 auto;
        width: min(82vw, 300px);
        scroll-snap-align: center;
        transition: transform 0.3s ease;
  }

  .stories-header {
    margin-bottom: 36px;
  }

    .stories-slider-nav {
        display: flex;
        justify-content: center;
        margin-top: 14px;
    }

    .stories-dots {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .stories-dot {
        width: 8px;
        height: 8px;
        border: 0;
        border-radius: 999px;
        background: rgba(108, 77, 246, 0.25);
        cursor: pointer;
        padding: 0;
        transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

    .stories-dot.active {
        width: 24px;
        background: #6c4df6;
        transform: translateY(-1px);
    }
}

@media (min-width: 641px) {
    .stories-slider-nav {
        display: none;
    }
}

@media (max-width: 480px) {
  .stories-title {
    font-size: 1.55rem;
  }

  .stories-impact-section {
    padding: 60px 0;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #f8fafc;
  color: #2d3748;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6a11cb;
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(
        180deg, #6a11cb 0%, #2575fc 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
        180deg, #8C3ADE 0%, #371167 100%);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(140,58,222,0.3);
}

.contact-info-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-info-content p {
  margin: 0;
  color: var(--text-secondary);
}

.office-hours-card {
  background-color: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.office-hours-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.office-hours-card p {
  margin: 0 0 8px 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Left align system for mobile (override center-focused desktop styles) */
  .internal-page .hero-section,
  .internal-page .about-hero,
  .internal-page .events-hero,
  .internal-page .team-hero,
  .internal-page .contact-hero-section,
  .internal-page .podcast-hero,
  .internal-page .section,
  .internal-page .section-overlay,
  .internal-page .contact-details-form-container,
  .internal-page .contact-info-list,
  .internal-page .contact-info-item,
  .internal-page .about-block,
  .internal-page .purpose-cards,
  .internal-page .goals-grid,
  .internal-page .values-grid,
  .internal-page .events-grid,
  .internal-page .team-grid {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }

  .internal-page .hero-section > *,
  .internal-page .about-hero > *,
  .internal-page .events-hero > *,
  .contact-details-form-section,
  .contact-details-form-container,
  .contact-form,
  .contact-info-section,
  .contact-info-item {
    text-align: left !important;
  }

  .contact-details-form-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-details-form-container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: 32px;
  }

  .contact-form,
  .contact-info-section {
    width: 100%;
    align-items: flex-start;
  }

  .contact-info-item {
    gap: 12px;
  }

  .contact-info-content h3 {
    margin-bottom: 8px;
  }

  .contact-info-content p {
    font-size: 0.95rem;
    margin: 0;
  }

  .internal-page .hero-section > *,
  .internal-page .about-hero > *,
  .internal-page .events-hero > *,

  .internal-page .team-hero > *,
  .internal-page .contact-hero-section > *,
  .internal-page .podcast-hero > * {
    text-align: left !important;
  }

  .internal-page .section,
  .internal-page .section-overlay {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .internal-page .container,
  .internal-page .contact-details-form-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-details-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero-section {
    padding: 120px 0;
  }

  .contact-hero-section h1 {
    font-size: 2.5rem;
  }

  .contact-hero-section .hero-subtitle {
    font-size: 1.1rem;
  }

  .contact-details-form-section {
    padding: 60px 0;
  }

  .contact-info-list {
    gap: 20px;
  }

  .contact-info-item {
    gap: 12px;
  }

  .contact-info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-section {
    padding: 100px 0;
  }

  .contact-hero-section h1 {
    font-size: 2rem;
  }

  .contact-hero-section .hero-subtitle {
    font-size: 1rem;
  }

  .contact-details-form-section {
    padding: 40px 0;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .contact-form .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .office-hours-card {
    padding: 20px;
  }
}


/* =================================================================
     HOME PAGE - MINIMAL HERO + CLEAN EVENTS
     ================================================================= */

.home-page {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 30%, #f8f6ff 62%, #f3efff 100%);
}

.home-page main {
    position: relative;
    isolation: isolate;
}

.home-page main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(680px 360px at 82% 18%, rgba(140, 58, 222, 0.07) 0%, rgba(140, 58, 222, 0) 72%);
    pointer-events: none;
    z-index: -1;
}

.home-page .site-header {
    background: rgba(255,255,255,0.72);
    box-shadow: 0 4px 14px rgba(55,17,103,0.06);
    border-bottom: 1px solid rgba(140,58,222,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.home-page .site-header .header-container {
    height: 78px;
    margin-top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
}

.home-page .home-hero {
    position: relative;
    min-height: 100vh;
    margin-top: -90px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/L7.png') center center / cover no-repeat;
    overflow: hidden;
}

.home-page .home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 460px at 52% 45%, rgba(248, 247, 255, 0.2) 0%, rgba(248, 247, 255, 0) 72%),
        linear-gradient(136deg, rgba(31, 17, 71, 0.34) 0%, rgba(79, 70, 229, 0.18) 58%, rgba(124, 108, 242, 0.12) 100%);
    z-index: 0;
}

.home-page .home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 8, 20, 0.02) 0%, rgba(12, 8, 20, 0.1) 100%);
    z-index: 1;
}

.home-page .home-hero > * {
    position: relative;
    z-index: 2;
}

.home-page .home-hero .hero-container {
    width: 100%;
    max-width: 1280px;
    min-height: 100vh;
    padding: 120px 32px 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-page .home-hero .hero-content {
    max-width: 700px;
    text-align: left;
}

.home-page .home-hero .hero-gradient-title {
    margin: 0;
    font-size: clamp(2.25rem, 5.6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(12, 6, 24, 0.28);
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.home-page .home-hero .hero-subtitle {
    margin: 20px 0 0;
    max-width: 700px;
    font-size: clamp(1.02rem, 1.52vw, 1.24rem);
    line-height: 1.72;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
}

.home-page .site-header .nav-link {
    color: #371167;
}

.home-page .site-header .nav-link:hover,
.home-page .site-header .nav-link.active {
    color: #371167;
    background: rgba(140,58,222,0.10);
}

.home-page .site-header .search-input-wrapper {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(140,58,222,0.14);
}

.home-page .impact-numbers-section {
    background:
    radial-gradient(circle at top right, rgba(140,58,222,0.08), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8f6ff 35%, #f1edff 70%, #eceafe 100%);
}

.home-page .events-modern {
    background: linear-gradient(180deg, #f8f6ff 0%, #f3efff 100%);
}

.home-page .podcast-series-section {
    background: linear-gradient(180deg, #eceafe 0%, #f3efff 56%, #f8f6ff 100%) !important;
}

.home-page .testimonials-section {
    background: linear-gradient(180deg, #f3efff 0%, #f8f6ff 100%);
}

.home-page .faq-section {
    background: linear-gradient(180deg, #f8f6ff 0%, #fcfbff 100%);
}

.home-page .split-section.about-section {
    background: linear-gradient(180deg, #fcfbff 0%, #f8f6ff 100%);
}

.home-page .site-footer {
    background: linear-gradient(160deg, #1f1147 0%, #342067 56%, #22124c 100%);
}

.home-page .home-feature-card,
.home-page .events-modern-card,
.home-page .podcast-series-card,
.home-page .testimonial-card,
.home-page .faq-item {
    border-color: rgba(124, 108, 242, 0.16);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 6px 16px rgba(43, 22, 78, 0.06);
}

.home-page .events-modern-card,
.home-page .faq-item {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.home-page .home-feature-bridge {
    position: relative;
    z-index: 7;
    margin-top: -68px;
}

.home-page .home-feature-grid {
    width: min(100%, 1080px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 0 6px;
}

.home-page .home-feature-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(124, 108, 242, 0.14);
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 6px 16px rgba(31, 17, 71, 0.07);
    text-align: center;
}

.home-page .section {
    background: transparent !important;
}

.home-page .home-feature-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3effd;
    color: #6b4db3;
    font-size: 1.05rem;
}

.home-page .home-feature-card h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.05rem;
    line-height: 1.35;
}

.home-page .home-feature-card p {
    margin: 8px 0 0;
    color: #6b7280;
    font-size: 0.93rem;
    line-height: 1.55;
}

.home-page .home-feature-bridge + .events-modern {
    margin-top: 22px;
}

.home-page .events-modern {
    position: relative;
    z-index: 5;
    margin-top: -72px;
    padding: 74px 0 62px;
    background: #f8f9fb;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -6px 20px rgba(17, 24, 39, 0.05);
}

.home-page .events-modern-head {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.home-page .events-modern h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.85rem, 3.6vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.home-page .events-modern-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-page .events-modern-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .events-modern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.home-page .events-modern-image {
    width: 100%;
    height: 172px;
    object-fit: cover;
}

.home-page .events-modern-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 230px;
}

.home-page .events-modern-tag {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5a4682;
    background: #f0ebfb;
}

.home-page .events-modern-body h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.03rem;
    line-height: 1.42;
}

.home-page .events-modern-meta {
    margin: 0;
    color: #8b94a7;
    font-size: 0.83rem;
    line-height: 1.5;
}

.home-page .events-modern-desc {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.62;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    min-height: 3.1em;
}

.home-page .events-modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid #d9ddee;
    background: #ffffff;
    color: #5c4a84;
    font-size: 0.86rem;
    font-weight: 600;
    transition: all 0.22s ease;
}

.home-page .events-modern-btn:hover {
    color: #4a3b69;
    border-color: #cfd4e8;
    background: #f7f8fc;
}

/* Mobile Menu Responsive Improvements */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.2rem 0.75rem;
    }
    
    .mobile-menu-actions {
        padding: 0 0.75rem 0.75rem 0.75rem;
        gap: 0.6rem;
    }
    
    .mobile-lang-toggle {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Tablet Improvements */
@media (max-width: 768px) and (min-width: 481px) {
    .mobile-menu {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .home-page .home-hero .hero-container {
        padding: 118px 24px 86px;
    }

    .home-page .home-feature-bridge {
        margin-top: -54px;
    }

    .home-page .home-feature-grid {
        gap: 16px;
    }

    .home-page .events-modern-grid {
        gap: 20px;
    }

    .home-page .events-modern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .events-modern-image {
        height: 190px;
    }
}

@media (max-width: 768px) {
    .home-page {
        background: linear-gradient(180deg, #ffffff 0%, #fcfbff 30%, #f8f6ff 64%, #f3efff 100%);
    }

    .home-page .site-header .header-container {
        height: 70px;
        padding: 0 18px;
        background: transparent;
    }

    .home-page .home-hero .hero-container {
        padding: 108px 20px 74px;
        justify-content: center;
    }

    .home-page .home-hero .hero-content {
        text-align: center;
    }

    .home-page .home-hero .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .home-page .home-feature-bridge {
        margin-top: -30px;
    }

    .home-page .home-feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: min(100%, 520px);
    }

    .home-page .home-feature-card {
        padding: 16px 16px;
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 4px;
        align-items: center;
        text-align: left;
    }

    .home-page .home-feature-icon {
        width: 36px;
        height: 36px;
        margin: 0;
        border-radius: 50%;
        font-size: 0.9rem;
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .home-page .home-feature-card h3 {
        margin: 0;
        grid-column: 2;
        text-align: left;
    }

    .home-page .home-feature-card p {
        margin: 6px 0 0;
        grid-column: 2;
        text-align: left;
    }

    .home-page .home-feature-bridge + .events-modern {
        margin-top: 24px;
    }

    .home-page .events-modern {
        margin-top: -52px;
        border-radius: 24px 24px 0 0;
        padding: 52px 0;
    }

    .home-page .events-modern-head {
        text-align: center;
        margin: 0 auto;
    }

    .home-page .events-modern-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        margin-top: 36px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 2px 6px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        grid-template-columns: none;
    }

    .home-page .events-modern-grid::-webkit-scrollbar {
        display: none;
    }

    .home-page .events-modern-card {
        flex: 0 0 min(82vw, 310px);
        scroll-snap-align: start;
    }

    .home-page .events-modern-image {
        height: 200px;
    }
}











/* =================================================================
   INTERNAL PAGES VISUAL SYNC WITH HOME PAGE
   ================================================================= */

.internal-page {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 30%, #f8f6ff 62%, #f3efff 100%);
}

.internal-page main {
    position: relative;
    isolation: isolate;
}

.internal-page main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(680px 360px at 82% 18%, rgba(140, 58, 222, 0.07) 0%, rgba(140, 58, 222, 0) 72%);
    pointer-events: none;
    z-index: -1;
}

.internal-page .site-header {
    background: rgba(255,255,255,0.72);
    box-shadow: 0 4px 14px rgba(55,17,103,0.06);
    border-bottom: 1px solid rgba(140,58,222,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.internal-page .site-header .header-container {
    height: 78px;
    margin-top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
}

.internal-page .site-header .nav-link {
    color: #371167;
}

.internal-page .site-header .nav-link:hover,
.internal-page .site-header .nav-link.active {
    color: #371167;
    background: rgba(140,58,222,0.10);
}

.internal-page .site-header .search-input-wrapper {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(140,58,222,0.14);
}

.internal-page .hero-section,
.internal-page .about-hero,
.internal-page .events-hero,
.internal-page .team-hero,
.internal-page .contact-hero,
.internal-page .contact-hero-section,
.internal-page .podcast-hero {
    background-color: #1f1147 !important;
    background-image: url('assets/L7.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    background-blend-mode: normal !important;
}

.internal-page .hero-section::before,
.internal-page .about-hero::before,
.internal-page .events-hero::before,
.internal-page .team-hero::before,
.internal-page .contact-hero::before,
.internal-page .contact-hero-section::before,
.internal-page .podcast-hero::before {
    background:
        radial-gradient(900px 460px at 52% 45%, rgba(248, 247, 255, 0.2) 0%, rgba(248, 247, 255, 0) 72%),
        linear-gradient(136deg, rgba(31, 17, 71, 0.34) 0%, rgba(79, 70, 229, 0.18) 58%, rgba(124, 108, 242, 0.12) 100%) !important;
}

.internal-page .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 8, 20, 0.02) 0%, rgba(12, 8, 20, 0.1) 100%) !important;
}

.internal-page .hero-background {
    background: transparent !important;
}

.internal-page .section,
.internal-page .section-overlay,
.internal-page section.section,
.internal-page section.section-overlay {
    background: transparent !important;
}

.internal-page .section-overlay::before {
    background: none !important;
}

.internal-page .card-depth,
.internal-page .event-card,
.internal-page .podcast-card,
.internal-page .purpose-card,
.internal-page .goal-card,
.internal-page .team-member,
.internal-page .about-block,
.internal-page .contact-form,
.internal-page .contact-info-section,
.internal-page .office-hours-card,
.internal-page .stat-item,
.internal-page .filter-field,
.internal-page .event-detail-item {
    border-color: rgba(124, 108, 242, 0.16) !important;
    background: rgba(255, 255, 255, 0.88) !important;
    box-shadow: 0 6px 16px rgba(43, 22, 78, 0.06) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.internal-page .card-depth:hover,
.internal-page .event-card:hover,
.internal-page .podcast-card:hover,
.internal-page .purpose-card:hover,
.internal-page .goal-card:hover,
.internal-page .team-member:hover,
.internal-page .about-block:hover,
.internal-page .contact-form:hover,
.internal-page .contact-info-section:hover,
.internal-page .office-hours-card:hover,
.internal-page .event-detail-item:hover {
    box-shadow: 0 14px 26px rgba(43, 22, 78, 0.12) !important;
    border-color: rgba(124, 108, 242, 0.24) !important;
}

.internal-page .btn-primary {
    background: var(--brand-gradient);
    color: var(--white) !important;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.internal-page .btn-secondary {
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--primary-purple) !important;
    border: 2px solid var(--accent-violet);
}

.internal-page .btn-secondary:hover {
    color: var(--white) !important;
    background-color: var(--accent-violet);
    border-color: var(--accent-violet);
}

/* =================================================================
   CONTACT PAGE UI POLISH (LAYOUT PRESERVED)
   ================================================================= */

.contact-page .contact-details-form-section {
    padding: clamp(72px, 9vw, 96px) 0;
}

.contact-page .contact-details-form-container {
    gap: clamp(30px, 4.2vw, 52px);
    align-items: stretch;
}

.contact-page .contact-form-section,
.contact-page .contact-info-section {
    height: 100%;
}

.contact-page .contact-form,
.contact-page .contact-info-section {
    border-radius: 20px;
    border: 1px solid rgba(124, 108, 242, 0.16);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 6px 16px rgba(43, 22, 78, 0.06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.contact-page .contact-form {
    gap: 14px;
    padding: clamp(22px, 3vw, 30px);
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(124, 108, 242, 0.2);
    background: rgba(255, 255, 255, 0.92);
    color: #2d3748;
    font-size: 0.98rem;
    line-height: 1.45;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-page .contact-form input {
    min-height: 52px;
    padding: 14px 16px;
}

.contact-page .contact-form textarea {
    min-height: 164px;
    max-height: 280px;
    resize: vertical;
    padding: 14px 16px;
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
    color: rgba(74, 74, 110, 0.78);
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
    outline: none;
    border-color: rgba(140, 58, 222, 0.55);
    box-shadow: 0 0 0 3px rgba(140, 58, 222, 0.12);
    background: #ffffff;
}

.contact-page .contact-form .btn {
    align-self: flex-start;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: var(--brand-gradient);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(43, 22, 78, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.contact-page .contact-form .btn i {
    color: #ffffff;
    font-size: 0.85rem;
}

.contact-page .contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(43, 22, 78, 0.16);
    opacity: 0.98;
}

.contact-page .contact-info-section {
    gap: 24px;
    padding: clamp(22px, 2.6vw, 28px);
}

.contact-page .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-page .contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(124, 108, 242, 0.14);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 4px 12px rgba(43, 22, 78, 0.05);
}

.contact-page .contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    box-shadow: 0 8px 20px rgba(140, 58, 222, 0.28);
}

.contact-page .contact-info-icon i {
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1;
}

.contact-page .contact-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.contact-page .contact-info-content h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.contact-page .contact-info-content p {
    margin: 0;
    line-height: 1.5;
    color: #4a4a6e;
}

.contact-page .office-hours-card {
    margin-top: 2px;
    padding: 18px 18px 14px;
    border-radius: 16px;
    border: 1px solid rgba(124, 108, 242, 0.14);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(43, 22, 78, 0.05);
}

.contact-page .office-hours-card h3 {
    margin-bottom: 10px;
    line-height: 1.25;
}

.contact-page .office-hours-card p {
    margin: 0 0 6px;
}

@media (max-width: 1024px) {
    .contact-page .contact-details-form-section {
        padding: 64px 0;
    }

    .contact-page .contact-details-form-container {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-page .contact-details-form-section {
        padding: 54px 0;
    }

    .contact-page .contact-form,
    .contact-page .contact-info-section {
        padding: 18px;
        border-radius: 18px;
    }

    .contact-page .contact-form {
        gap: 12px;
    }

    .contact-page .contact-form input {
        min-height: 50px;
    }

    .contact-page .contact-form textarea {
        min-height: 140px;
    }

    .contact-page .contact-form .btn {
        width: 100%;
        min-height: 46px;
    }

    .contact-page .contact-info-list {
        gap: 10px;
    }

    .contact-page .contact-info-item {
        padding: 12px;
        gap: 12px;
    }

    .contact-page .contact-info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* =================================================================
   ABOUT ICON VISIBILITY + FLOAT BUTTON CONSISTENCY
   ================================================================= */

/* Keep Mission/Vision icons untouched; enforce white icons for the rest of About circular icon badges. */
.about-page .mechanism-card .card-icon-container,
.about-page .our-values-block .value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    background: var(--brand-gradient);
    box-shadow: 0 8px 20px rgba(140, 58, 222, 0.26);
}

.about-page .mechanism-card .card-icon-container i,
.about-page .our-values-block .value-icon i {
    color: #ffffff !important;
    font-size: 1.12rem;
    line-height: 1;
}

/* Keep Core Goals circular markers crisp and consistent with the same atmosphere. */
.about-page .goal-number {
    box-shadow: 0 8px 20px rgba(140, 58, 222, 0.24);
}

/* Scroll-to-top button consistency across all pages, with refined mobile behavior. */
.scroll-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(140, 58, 222, 0.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.scroll-to-top i {
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 12px 24px rgba(55, 17, 103, 0.22);
}

.scroll-to-top:active {
    transform: scale(0.98);
}

@media (max-width: 1024px) {
    .about-page .mechanism-card .card-icon-container,
    .about-page .our-values-block .value-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }

    .about-page .mechanism-card .card-icon-container i,
    .about-page .our-values-block .value-icon i {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .about-page .mechanism-card .card-icon-container,
    .about-page .our-values-block .value-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        box-shadow: 0 7px 16px rgba(140, 58, 222, 0.24);
    }

    .about-page .mechanism-card .card-icon-container i,
    .about-page .our-values-block .value-icon i {
        font-size: 1rem;
    }

    .scroll-to-top {
        width: 44px;
        height: 44px;
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        box-shadow: 0 8px 18px rgba(55, 17, 103, 0.2);
    }

    .scroll-to-top i {
        font-size: 0.95rem;
    }
}

/* =================================================================
   ABOUT PAGE MOBILE/TABLET HORIZONTAL CARD ROWS
   ================================================================= */

@media (max-width: 1024px) {
    .about-page .goals-grid,
    .about-page .mechanisms-grid,
    .about-page .values-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 2px 2px 8px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        grid-template-columns: none;
    }

    .about-page .goals-grid::-webkit-scrollbar,
    .about-page .mechanisms-grid::-webkit-scrollbar,
    .about-page .values-grid::-webkit-scrollbar {
        display: none;
    }

    .about-page .goals-grid .goal-card,
    .about-page .mechanisms-grid .mechanism-card,
    .about-page .values-grid .value-item {
        flex: 0 0 min(78vw, 330px);
        width: min(78vw, 330px);
        min-height: 220px;
        padding: 18px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .about-page .goals-grid .goal-card h3,
    .about-page .mechanisms-grid .mechanism-card h3,
    .about-page .values-grid .value-item h3 {
        font-size: 1.06rem;
        margin-bottom: 8px;
    }

    .about-page .goals-grid .goal-card p,
    .about-page .mechanisms-grid .mechanism-card p,
    .about-page .values-grid .value-item p {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .about-page .goals-grid .goal-number {
        margin-bottom: 10px;
        font-size: 2rem;
    }

    .about-page .values-grid .value-item {
        text-align: center !important;
        align-items: center !important;
        justify-content: center;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .about-page .values-grid .value-item .value-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .about-page .values-grid .value-item h3,
    .about-page .values-grid .value-item p {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .about-page .goals-grid,
    .about-page .mechanisms-grid,
    .about-page .values-grid {
        gap: 12px;
        padding: 2px 2px 6px;
    }

    .about-page .goals-grid .goal-card,
    .about-page .mechanisms-grid .mechanism-card,
    .about-page .values-grid .value-item {
        flex-basis: min(86vw, 300px);
        width: min(86vw, 300px);
        min-height: 200px;
        padding: 16px;
    }

    .about-page .values-grid .value-item {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

/* =================================================================
   ABOUT PAGE: MECHANISMS + VALUES UNIFIED CARD SYSTEM
   ================================================================= */

@media (min-width: 1025px) {
    .about-page .mechanisms-grid,
    .about-page .values-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        align-items: stretch;
    }

    .about-page .mechanisms-grid .mechanism-card,
    .about-page .values-grid .value-item {
        width: 100%;
        min-height: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 24px;
    }

    .about-page .mechanisms-grid .mechanism-card .card-icon-container,
    .about-page .values-grid .value-item .value-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .about-page .mechanisms-grid .mechanism-card h3,
    .about-page .values-grid .value-item h3,
    .about-page .mechanisms-grid .mechanism-card p,
    .about-page .values-grid .value-item p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1024px) {
    .about-page .mechanisms-grid .mechanism-card,
    .about-page .values-grid .value-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .about-page .mechanisms-grid .mechanism-card .card-icon-container,
    .about-page .values-grid .value-item .value-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .about-page .mechanisms-grid .mechanism-card h3,
    .about-page .values-grid .value-item h3,
    .about-page .mechanisms-grid .mechanism-card p,
    .about-page .values-grid .value-item p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}
















/* ============================================================
   OUR TEAM PAGE — PREMIUM SHOWCASE REDESIGN
   ============================================================ */

/* ----- Page Banner ----- */
.team-page .team-page-banner {
  position: relative;
  background: linear-gradient(135deg, #371167 0%, #8C3ADE 60%, #b06af0 100%);
  padding: 110px 0 90px;
  overflow: hidden;
  text-align: center;
}
.team-page .team-banner-decor {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.team-page .team-banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.team-page .team-banner-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}
.team-page .team-banner-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.12;
}
.team-page .team-banner-accent {
  color: #d4b0ff;
}
.team-page .team-banner-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ----- Showcase Sections ----- */
.team-page .team-showcase-section {
  padding: 88px 0;
  background: #fff;
}
.team-page .team-trainers-bg {
  background: #f8f5ff;
}

/* Section Headers */
.team-page .team-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.team-page .team-section-tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #8C3ADE, #371167);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.55rem;
}
.team-page .team-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #1a0a2e;
  margin: 0 0 0.75rem;
}
.team-page .team-section-subtitle {
  font-size: 1.05rem;
  color: #64607a;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ----- Premium Grid ----- */
.team-page .team-premium-grid {
  display: grid;
  gap: 1.75rem;
}
.team-page .leadership-grid {
  grid-template-columns: repeat(4, 1fr);
}
.team-page .trainers-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ----- Premium Card ----- */
.team-page .team-card-premium {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(55,17,103,0.09), 0 1px 4px rgba(55,17,103,0.04);
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.team-page .team-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 56px rgba(140,58,222,0.20), 0 4px 12px rgba(55,17,103,0.12);
}

/* Card Image */
.team-page .tcp-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #e8deff 0%, #f3eeff 100%);
}
.team-page .tcp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
  display: block;
}
.team-page .team-card-premium:hover .tcp-image {
  transform: scale(1.07);
}
.team-page .tcp-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(55,17,103,0.30) 100%);
  opacity: 0;
  transition: opacity 0.32s;
}
.team-page .team-card-premium:hover .tcp-image-overlay {
  opacity: 1;
}

/* Card Body */
.team-page .tcp-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.team-page .tcp-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1a0a2e;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.team-page .tcp-role {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  color: #8C3ADE;
  background: rgba(140,58,222,0.10);
  padding: 4px 13px;
  border-radius: 50px;
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}
.team-page .tcp-desc {
  font-size: 0.82rem;
  color: #8c8aa0;
  line-height: 1.55;
  margin: 0 0 1.2rem;
  flex: 1;
}

/* "+" Detail Button */
.team-page .tcp-detail-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8C3ADE 0%, #371167 100%);
  border: none;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s;
  box-shadow: 0 4px 14px rgba(140,58,222,0.38);
  flex-shrink: 0;
}
.team-page .tcp-detail-btn:hover {
  transform: scale(1.13) rotate(90deg);
  box-shadow: 0 6px 22px rgba(140,58,222,0.52);
}
.team-page .tcp-detail-btn i {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* ----- Empty State ----- */
.team-page .team-empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 2rem;
  text-align: center;
  color: #a09ab8;
  gap: 1rem;
}
.team-page .team-empty-state i {
  font-size: 3rem;
  background: linear-gradient(135deg, #8C3ADE, #371167);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
}
.team-page .team-empty-state p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 380px;
  margin: 0;
}

/* ----- Modal ----- */
/* iOS-safe scroll lock — position: fixed preserves overlay on mobile safari */
body.modal-open {
  overflow: hidden;
  /* Save & restore scroll via JS; position:fixed set from script */
}
html.modal-open-html {
  overflow: hidden;
}

.team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 4, 24, 0.78);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}
.team-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.team-modal-box {
  background: #fff;
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
  box-shadow: 0 40px 100px rgba(55,17,103,0.38), 0 8px 24px rgba(0,0,0,0.18);
  transform: translateY(32px) scale(0.96);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1) 0.06s,
              opacity 0.32s ease 0.06s;
}
.team-modal-overlay.active .team-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.team-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(55,17,103,0.12);
  border: 1.5px solid rgba(140,58,222,0.20);
  color: #371167;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.28s cubic-bezier(0.22,1,0.36,1);
  flex-shrink: 0;
}
.team-modal-close:hover,
.team-modal-close:focus-visible {
  background: #8C3ADE;
  color: #fff;
  border-color: #8C3ADE;
  transform: rotate(90deg) scale(1.08);
  outline: none;
}
.team-modal-inner {
  display: flex;
  min-height: 420px;
}
.team-modal-photo-col {
  position: relative;
  width: 42%;
  flex-shrink: 0;
  background: linear-gradient(160deg, #e8deff 0%, #c9a8f8 100%);
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}
.team-modal-photo-frame {
  width: 100%;
  height: 100%;
  position: relative;
}
.team-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-modal-photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(55,17,103,0.42) 100%);
  pointer-events: none;
}
.team-modal-info-col {
  flex: 1;
  padding: 2.6rem 2.4rem 2.6rem;
  display: flex;
  flex-direction: column;
}
.team-modal-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #8C3ADE, #371167);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.55rem;
  display: block;
}
.team-modal-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a0a2e;
  margin: 0 0 0.55rem;
  line-height: 1.2;
  padding-right: 2.8rem;
}
.team-modal-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8C3ADE;
  background: rgba(140,58,222,0.10);
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.team-modal-hr {
  height: 2px;
  background: linear-gradient(90deg, #8C3ADE 0%, rgba(140,58,222,0.08) 100%);
  border: none;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.team-modal-bio {
  font-size: 0.96rem;
  color: #4a4560;
  line-height: 1.78;
  flex: 1;
}

/* ----- Responsive: 3-col at 1200px ----- */
@media (max-width: 1200px) {
  .team-page .leadership-grid,
  .team-page .trainers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ----- Responsive: 2-col at 900px + modal stacked ----- */
@media (max-width: 900px) {
  .team-page .leadership-grid,
  .team-page .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-modal-inner {
    flex-direction: column;
  }
  .team-modal-photo-col {
    width: 100%;
    border-radius: 24px 24px 0 0;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 240px;
  }
  .team-modal-photo-frame {
    height: 100%;
  }
  .team-modal-name {
    padding-right: 2.6rem;
  }
}

/* ----- Responsive: swipe rows on mobile ----- */
@media (max-width: 640px) {
  .team-page .team-page-banner {
    padding: 80px 0 64px;
  }
  .team-page .team-showcase-section {
    padding: 60px 0;
  }
  .team-page .team-swipe-track-outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
  .team-page .team-swipe-track-outer::-webkit-scrollbar {
    display: none;
  }
  .team-page .leadership-grid,
  .team-page .trainers-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.1rem;
    width: max-content;
  }
  .team-page .team-card-premium {
    width: 230px;
    flex-shrink: 0;
  }
  .team-page .tcp-image-wrapper {
    aspect-ratio: 1 / 1;
    height: 230px;
  }
  .team-modal-overlay {
    padding: 1rem;
    align-items: flex-end;
  }
  .team-modal-box {
    border-radius: 20px 20px 0 0;
    max-height: 88vh;
  }
  .team-modal-photo-col {
    aspect-ratio: 4 / 3;
    min-height: 180px;
  }
  .team-modal-info-col {
    padding: 1.8rem 1.5rem 2rem;
  }
  .team-modal-name {
    font-size: 1.3rem;
    padding-right: 2.4rem;
  }
  .team-modal-bio {
    font-size: 0.9rem;
  }
}

/* ============================================================
     PODCASTS PAGE — ADVANCED FILTER SHOWCASE
     ============================================================ */

body.podcast-page.pod-filters-open,
html.pod-filters-open-html {
    overflow: hidden;
}

/* ----- Banner ----- */
.podcast-page .pod-banner {
    position: relative;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.18) 0%, transparent 34%),
        linear-gradient(135deg, #371167 0%, #8C3ADE 60%, #b06af0 100%);
    padding: 110px 0 88px;
    overflow: hidden;
    text-align: center;
}
.podcast-page .pod-banner-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.podcast-page .pod-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.podcast-page .pod-banner-tag {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
}
.podcast-page .pod-banner-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.12;
}
.podcast-page .pod-banner-accent {
    color: #d4b0ff;
}
.podcast-page .pod-banner-subtitle {
    font-size: clamp(0.98rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2rem;
}
.podcast-page .pod-banner-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.podcast-page .pod-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.podcast-page .pod-stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.podcast-page .pod-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.70);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.podcast-page .pod-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
}

/* ----- Layout Section ----- */
.podcast-page .pod-layout-section {
    position: relative;
    background:
        radial-gradient(circle at 8% 10%, rgba(140, 58, 222, 0.10) 0%, transparent 26%),
        radial-gradient(circle at 92% 18%, rgba(55, 17, 103, 0.08) 0%, transparent 24%),
        #f8f5ff;
    padding: 56px 0 80px;
    min-height: 60vh;
}
.podcast-page .pod-layout-container {
    position: relative;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.2rem;
    align-items: start;
}

/* ----- Sidebar ----- */
.podcast-page .pod-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(33, 14, 70, 0.28);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 1098;
}
.podcast-page .pod-filter-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.podcast-page .pod-sidebar {
    position: sticky;
    top: 100px;
}
.podcast-page .pod-sidebar-inner {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,242,255,0.94) 100%);
    border-radius: 22px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 14px 40px rgba(55,17,103,0.12);
    border: 1px solid rgba(140,58,222,0.12);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    backdrop-filter: blur(16px);
}
.podcast-page .pod-sidebar-mobile-head {
    display: none;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.podcast-page .pod-sidebar-kicker {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8C3ADE;
    font-weight: 700;
}
.podcast-page .pod-sidebar-mobile-title {
    margin: 0;
    font-size: 1.1rem;
    color: #210e46;
}
.podcast-page .pod-sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(140,58,222,0.18);
    border-radius: 50%;
    background: rgba(255,255,255,0.76);
    color: #5a2ea1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.podcast-page .pod-sidebar-close:hover {
    transform: translateY(-1px);
    border-color: rgba(140,58,222,0.3);
    box-shadow: 0 10px 24px rgba(95, 44, 168, 0.18);
}
.podcast-page .pod-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.podcast-page .pod-filter-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8C3ADE, #371167);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.podcast-page .pod-filter-pills {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.podcast-page .pod-filter-pill {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(140,58,222,0.20);
    background: rgba(255,255,255,0.75);
    color: #5a3d8a;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    font-family: inherit;
}
.podcast-page .pod-filter-pill:hover {
    border-color: #8C3ADE;
    background: rgba(140,58,222,0.08);
    color: #371167;
    transform: translateX(3px);
}
.podcast-page .pod-filter-pill.active {
    background: linear-gradient(135deg, #8C3ADE 0%, #371167 100%);
    border-color: transparent;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(140,58,222,0.30);
}
.podcast-page .pod-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1.5px solid rgba(140,58,222,0.25);
    background: rgba(255,255,255,0.64);
    color: #8C3ADE;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.podcast-page .pod-reset-btn:hover {
    background: rgba(140,58,222,0.08);
    border-color: #8C3ADE;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(140,58,222,0.14);
}

/* ----- Main area ----- */
.podcast-page .pod-main {
    min-width: 0;
    height: auto;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.podcast-page .pod-mobile-filter-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 88px;
    z-index: 20;
    background: rgba(255,255,255,0.82);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    box-shadow: 0 16px 32px rgba(55,17,103,0.10);
    border: 1px solid rgba(140,58,222,0.12);
    backdrop-filter: blur(18px);
}
.podcast-page .pod-mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8C3ADE, #371167);
    border: none;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 12px 26px rgba(97, 43, 177, 0.28);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.podcast-page .pod-mobile-filter-toggle:hover {
    box-shadow: 0 18px 30px rgba(140,58,222,0.34);
    transform: translateY(-1px);
}
.podcast-page .pod-results-count {
    font-size: 0.85rem;
    color: #5c4f83;
    font-weight: 700;
}
.podcast-page .pod-results-header {
    padding: 0 0.25rem;
}
.podcast-page .pod-results-count-desktop {
    font-size: 0.9rem;
    color: #8478a8;
}
.podcast-page .pod-results-count-desktop strong {
    color: #371167;
}

/* ----- Podcast Grid ----- */
.podcast-page .pod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 360px));
    gap: 1.5rem;
    align-items: stretch;
    justify-content: center;
    height: auto;
    overflow: visible;
    position: relative;
}

/* ----- Podcast Card ----- */
.podcast-page .pod-card {
    position: relative;
    min-width: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,244,255,0.98) 100%);
    border-radius: 24px;
    border: 1px solid rgba(140,58,222,0.12);
    box-shadow: 0 10px 28px rgba(55,17,103,0.09);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s cubic-bezier(0.22,1,0.36,1), border-color 0.22s ease;
}
.podcast-page .pod-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(140,58,222,0.28), rgba(255,255,255,0), rgba(55,17,103,0.16));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}
.podcast-page .pod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(140,58,222,0.18), 0 8px 20px rgba(55,17,103,0.10);
    border-color: rgba(140,58,222,0.24);
}
.podcast-page .pod-card:hover::before {
    opacity: 1;
}
.podcast-page .pod-card.pod-card--hidden {
    display: none;
}
.podcast-page .pod-card:not(.pod-card--hidden) {
    display: flex;
}
.podcast-page .pod-card.pod-card--fade-in {
    animation: podCardFadeIn 0.32s cubic-bezier(0.22,1,0.36,1) both;
    will-change: opacity, transform;
}
@keyframes podCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.podcast-page .pod-card-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #e8deff, #f3eeff);
}
.podcast-page .pod-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
    display: block;
}
.podcast-page .pod-card:hover .pod-card-image {
    transform: scale(1.08);
}
.podcast-page .pod-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(246,241,255,0.86);
    border: 1px solid rgba(140,58,222,0.24);
    color: #4f2d8f;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.podcast-page .pod-card-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(140,58,222,0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C3ADE;
    font-size: 0.95rem;
    box-shadow: 0 10px 18px rgba(55,17,103,0.18);
}

.podcast-page .pod-card-body {
    padding: 1.25rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.7rem;
}
.podcast-page .pod-card-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: #1a0a2e;
    margin: 0;
    line-height: 1.28;
}
.podcast-page .pod-card-desc {
    font-size: 0.88rem;
    color: #6b628a;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.podcast-page .pod-card-meta {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.podcast-page .pod-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.79rem;
    color: #7d739e;
    font-weight: 700;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(140,58,222,0.06);
    border: 1px solid rgba(140,58,222,0.10);
}
.podcast-page .pod-meta-item i {
    color: #8C3ADE;
    font-size: 0.74rem;
}
.podcast-page .pod-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 0.2rem;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(140,58,222,0.08), rgba(55,17,103,0.08));
    border: 1.5px solid rgba(140,58,222,0.24);
    color: #4f2d8f;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.podcast-page .pod-card-btn i {
    color: #d71754;
}
.podcast-page .pod-card-btn:hover {
    background: linear-gradient(135deg, #8C3ADE, #371167);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 26px rgba(140,58,222,0.32);
    transform: translateY(-1px);
}
.podcast-page .pod-card-btn:hover i {
    color: #fff;
}

/* ----- Empty State ----- */
.podcast-page .pod-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
    gap: 1rem;
    background: rgba(255,255,255,0.9);
    border-radius: 24px;
    border: 1px solid rgba(140,58,222,0.12);
    box-shadow: 0 16px 34px rgba(55,17,103,0.08);
}
.podcast-page .pod-empty-state i {
    font-size: 3rem;
    background: linear-gradient(135deg, #8C3ADE, #371167);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.45;
}
.podcast-page .pod-empty-state p {
    font-size: 1rem;
    color: #8478a8;
    margin: 0;
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
    .podcast-page .pod-layout-container {
        grid-template-columns: 220px 1fr;
        gap: 1.6rem;
    }
    .podcast-page .pod-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 340px));
    }
}

@media (max-width: 860px) {
    .podcast-page .pod-layout-container {
        grid-template-columns: 1fr;
    }
    .podcast-page .pod-sidebar {
        position: fixed;
        top: 94px;
        left: 50%;
        width: min(92vw, 420px);
        max-height: calc(100vh - 120px);
        z-index: 1099;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, -18px) scale(0.97);
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1), visibility 0.3s ease;
    }
    .podcast-page .pod-sidebar.mobile-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0) scale(1);
    }
    .podcast-page .pod-sidebar-inner {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        gap: 1.2rem;
        padding: 1.15rem;
        border-radius: 26px;
        box-shadow: 0 28px 60px rgba(42, 15, 82, 0.28);
    }
    .podcast-page .pod-sidebar-mobile-head {
        display: flex;
    }
    .podcast-page .pod-mobile-filter-bar {
        display: flex;
    }
    .podcast-page .pod-results-header {
        display: none;
    }
}

@media (max-width: 768px) {
    .podcast-page .pod-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    }
}

@media (max-width: 540px) {
    .podcast-page .pod-banner {
        padding: 80px 0 64px;
    }
    .podcast-page .pod-layout-section {
        padding: 40px 0 60px;
    }
    .podcast-page .pod-mobile-filter-bar {
        top: 82px;
        padding: 0.8rem 0.9rem;
    }
    .podcast-page .pod-mobile-filter-toggle {
        padding: 8px 14px;
    }
    .podcast-page .pod-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }
    .podcast-page .pod-card-image-wrap {
        aspect-ratio: 16 / 9;
    }
    .podcast-page .pod-sidebar {
        top: 86px;
        width: min(94vw, 420px);
        max-height: calc(100vh - 102px);
    }
    .podcast-page .pod-sidebar-inner {
        max-height: calc(100vh - 102px);
    }
}


/* ============================================================
   NEWS PAGE STYLES
   ============================================================ */

/* ----- Banner ----- */
.news-page .news-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a2e 0%, #371167 50%, #210e46 100%);
    padding: 90px 0 72px;
    text-align: center;
}
.news-page .news-banner-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(140,58,222,0.35) 0%, transparent 65%),
        radial-gradient(circle at 15% 80%, rgba(55,17,103,0.4) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(140,58,222,0.25) 0%, transparent 35%);
    pointer-events: none;
}
.news-page .news-banner-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.news-page .news-banner-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid rgba(140,58,222,0.45);
    background: rgba(140,58,222,0.15);
    color: #d4b8f8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(10px);
}
.news-page .news-banner-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 1rem;
}
.news-page .news-banner-accent {
    background: linear-gradient(135deg, #c084fc, #a855f7, #8C3ADE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.news-page .news-banner-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin: 0;
}

/* ----- Layout ----- */
body.news-page.news-filters-open,
html.news-filters-open-html {
    overflow: hidden;
}
.news-page .news-layout-section {
    position: relative;
    background:
        radial-gradient(circle at 8% 10%, rgba(140,58,222,0.10) 0%, transparent 26%),
        radial-gradient(circle at 92% 18%, rgba(55,17,103,0.08) 0%, transparent 24%),
        #f8f5ff;
    padding: 56px 0 80px;
    min-height: 60vh;
}
.news-page .news-layout-container {
    position: relative;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.2rem;
    align-items: start;
}

/* ----- Sidebar ----- */
.news-page .news-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(33,14,70,0.28);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 1098;
}
.news-page .news-filter-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.news-page .news-sidebar {
    position: sticky;
    top: 100px;
}
.news-page .news-sidebar-inner {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,242,255,0.94) 100%);
    border-radius: 22px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 14px 40px rgba(55,17,103,0.12);
    border: 1px solid rgba(140,58,222,0.12);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    backdrop-filter: blur(16px);
}
.news-page .news-sidebar-mobile-head {
    display: none;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.news-page .news-sidebar-kicker {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8C3ADE;
    font-weight: 700;
}
.news-page .news-sidebar-mobile-title {
    margin: 0;
    font-size: 1.1rem;
    color: #210e46;
}
.news-page .news-sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(140,58,222,0.18);
    border-radius: 50%;
    background: rgba(255,255,255,0.76);
    color: #5a2ea1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.news-page .news-sidebar-close:hover {
    transform: translateY(-1px);
    border-color: rgba(140,58,222,0.3);
    box-shadow: 0 10px 24px rgba(95,44,168,0.18);
}
.news-page .news-sidebar-main-title {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #371167;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(140,58,222,0.15);
}
.news-page .news-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.2rem 0.15rem 0.55rem;
    border: 1px solid rgba(140,58,222,0.10);
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    transition: border-color 0.3s ease, box-shadow 0.34s ease, background 0.3s ease;
    padding-bottom: 0.25rem;
}
.news-page .news-filter-group.is-open {
    border-color: rgba(140,58,222,0.24);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 10px 24px rgba(114,46,193,0.12);
}
.news-page .news-filter-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;
}
.news-page .news-filter-group-toggle i {
    color: #8C3ADE;
    font-size: 0.78rem;
    transition: transform 0.36s ease, color 0.36s ease;
}
.news-page .news-filter-group-toggle.active i,
.news-page .news-filter-group.is-open .news-filter-group-toggle i {
    transform: rotate(180deg);
    color: #371167;
}
.news-page .news-filter-group-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    padding-top: 0;
    pointer-events: none;
    transition: max-height 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease, transform 0.3s ease, padding-top 0.3s ease;
}
.news-page .news-filter-group.is-open .news-filter-group-panel {
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 0.15rem;
    pointer-events: auto;
}
.news-page .news-filter-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8C3ADE, #371167);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.news-page .news-filter-group-toggle.active .news-filter-title,
.news-page .news-filter-group.is-open .news-filter-title {
    background: linear-gradient(135deg, #6d27cb, #2c0b58);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.news-page .news-filter-pills {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.news-page .news-filter-pill {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(140,58,222,0.20);
    background: rgba(255,255,255,0.75);
    color: #5a3d8a;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    font-family: inherit;
}
.news-page .news-filter-pill:hover {
    border-color: #8C3ADE;
    background: rgba(140,58,222,0.08);
    color: #371167;
    transform: translateX(3px);
}
.news-page .news-filter-pill.active {
    background: linear-gradient(135deg, #8C3ADE 0%, #371167 100%);
    border-color: transparent;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(140,58,222,0.30);
}
.news-page .news-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1.5px solid rgba(140,58,222,0.25);
    background: rgba(255,255,255,0.64);
    color: #8C3ADE;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.news-page .news-reset-btn:hover {
    background: rgba(140,58,222,0.08);
    border-color: #8C3ADE;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(140,58,222,0.14);
}

/* ----- Main area ----- */
.news-page .news-main {
    min-width: 0;
    height: auto;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.news-page .news-mobile-filter-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 88px;
    z-index: 20;
    background: rgba(255,255,255,0.82);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    box-shadow: 0 16px 32px rgba(55,17,103,0.10);
    border: 1px solid rgba(140,58,222,0.12);
    backdrop-filter: blur(18px);
}
.news-page .news-mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8C3ADE, #371167);
    border: none;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 12px 26px rgba(97,43,177,0.28);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.news-page .news-mobile-filter-toggle:hover {
    box-shadow: 0 18px 30px rgba(140,58,222,0.34);
    transform: translateY(-1px);
}
.news-page .news-results-count {
    font-size: 0.85rem;
    color: #5c4f83;
    font-weight: 700;
}
.news-page .news-results-header {
    padding: 0 0.25rem;
}
.news-page .news-results-count-desktop {
    font-size: 0.9rem;
    color: #8478a8;
}
.news-page .news-results-count-desktop strong {
    color: #371167;
}

/* ----- News Grid ----- */
.news-page .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    justify-content: start;
    height: auto;
    overflow: visible;
    position: relative;
}

/* ----- News Card ----- */
.news-page .news-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}
.news-page .news-card::before {
    display: none;
}
.news-page .news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}
.news-page .news-card.news-card--hidden {
    display: none;
}
.news-page .news-card:not(.news-card--hidden) {
    display: flex;
}
.news-page .news-card.news-card--fade-in {
    animation: newsCardFadeIn 0.32s cubic-bezier(0.22,1,0.36,1) both;
    will-change: opacity, transform;
}
@keyframes newsCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Events-modern card inner elements on news page */
.news-page .news-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 22px 22px 0 0;
    display: block;
    flex-shrink: 0;
}
.news-page .events-modern-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 230px;
}
.news-page .events-modern-tag {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5a4682;
    background: #f0ebfb;
}
.news-page .events-modern-body h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.03rem;
    font-weight: 700;
    line-height: 1.42;
}
.news-page .events-modern-meta {
    margin: 0;
    color: #8b94a7;
    font-size: 0.83rem;
    line-height: 1.5;
}
.news-page .events-modern-desc {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.62;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    min-height: 3.1em;
}
.news-page .events-modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid #d9ddee;
    background: #ffffff;
    color: #5c4a84;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s ease;
}
.news-page .events-modern-btn:hover {
    color: #4a3b69;
    border-color: #cfd4e8;
    background: #f7f8fc;
}
/* Card footer: button + social icons on same line */
.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: nowrap;
}
.news-card-footer .events-modern-btn,
.news-card-footer .btn,
.news-card-footer .read-more-btn {
    margin-top: 0;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 30px;
    white-space: nowrap;
}
.news-card-social,
.news-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}
.news-social-icon,
.news-card-social a,
.news-social-links a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: rgba(108, 77, 246, 0.08);
    color: #6c4df6;
    text-decoration: none;
    transition: 0.3s ease;
    flex-shrink: 0;
}
.news-social-icon:hover,
.news-card-social a:hover,
.news-social-links a:hover {
    background: #6c4df6;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ----- Empty state ----- */
.news-page .news-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: #8478a8;
    text-align: center;
}
.news-page .news-empty-state i {
    font-size: 2.8rem;
    opacity: 0.4;
}
.news-page .news-empty-state p {
    font-size: 1rem;
    margin: 0;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .news-page .news-layout-container {
        grid-template-columns: 240px 1fr;
        gap: 1.6rem;
    }
}

@media (max-width: 860px) {
    .news-page .news-layout-container {
        grid-template-columns: 1fr;
    }
    .news-page .news-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: min(90vw, 360px);
        height: 100vh;
        z-index: 1099;
        overflow-y: auto;
        transform: translateX(-110%);
        transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
    }
    .news-page .news-sidebar.mobile-open {
        transform: translateX(0);
    }
    .news-page .news-sidebar-inner {
        border-radius: 0;
        min-height: 100vh;
        padding-top: 1.4rem;
    }
    .news-page .news-sidebar-mobile-head {
        display: flex;
    }
    .news-page .news-mobile-filter-bar {
        display: flex;
    }
    .news-page .news-results-header {
        display: none;
    }
    .news-page .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-page .news-banner {
        padding: 64px 0 52px;
    }
    .news-page .news-layout-section {
        padding: 36px 0 56px;
    }
    .news-page .news-mobile-filter-bar {
        padding: 0.8rem 0.9rem;
    }
    .news-page .news-mobile-filter-toggle {
        padding: 8px 14px;
    }
    .news-page .news-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }
    .news-page .news-card-image-wrap {
        aspect-ratio: 16 / 9;
    }
    .news-page .news-sidebar {
        top: 0;
        width: min(94vw, 420px);
        max-height: 100vh;
    }
    .news-page .news-sidebar-inner {
        max-height: 100vh;
    }
}
