@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

/* Prevent white flash on load */
html {
    background-color: #5D4E8C;
}

body {
    opacity: 0;
    animation: bodyFadeIn 0.4s ease forwards;
}

@keyframes bodyFadeIn {
    to {
        opacity: 1;
    }
}

/* Typing Animation */
.typing-text {
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
    transition-delay: 0.3s;
}

:root {
    --primary-purple: #7B68A6;
    --secondary-purple: #9B8BC4;
    --light-purple: #E8E0F0;
    --sage-green: #9B8BC4;
    --light-sage: #E8E0F0;
    --pretty-blue: #A594C9;
    --light-blue: #F0EBF7;
    --off-white: #FAF8F5;
    --warm-white: #FAF8F5;
    --cream: #F5F3F9;
    --white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-medium: #5A5A5A;
    --text-light: #7A7A7A;
    --shadow-light: rgba(123, 104, 166, 0.04);
    --shadow-medium: rgba(123, 104, 166, 0.08);
    --shadow-heavy: rgba(123, 104, 166, 0.12);
    --secondary-pink: #B89AC9;
    --light-pink: #FFD1DC;
    --deep-purple: #5D4E8C;
    --soft-lavender: #C9BFE0;
    --pale-purple: #F3F0F9;
    --primary-blue: #7B68A6;
    --primary-pink: #B89AC9;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--off-white);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 600;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
}

.nav-logo h1 {
    color: var(--primary-purple);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.nav-donate-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 115, 155, 0.3);
    white-space: nowrap;
}

.nav-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 115, 155, 0.4);
    background: linear-gradient(135deg, #e8628a, var(--primary-purple));
}

.nav-donate-btn i {
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-purple);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-item {
    position: relative;
    transition: transform 0.2s ease;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary-purple);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 30px var(--shadow-medium);
    border-radius: 15px;
    overflow: hidden;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dropdown.active .dropdown-content,
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--light-purple);
    color: var(--primary-purple);
}

/* Main Content */
main {
    margin-top: 80px;
}

.section {
    display: none;
    min-height: 100vh;
    padding: 4rem 0;
}

.section.active {
    display: block;
}

#home.section {
    padding: 0;
}

/* Three Column Feature Section */
.three-col-section {
    padding: 0;
    margin: 0;
    background: var(--background-light);
    width: 100%;
}

.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.three-col-card {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.three-col-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

/* Purple hover overlay that slides up */
.three-col-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(75, 45, 110, 0.95) 0%, rgba(123, 104, 166, 0.85) 50%, rgba(123, 104, 166, 0.7) 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 1;
}

.three-col-card:hover::after {
    transform: translateY(0);
}

.three-col-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
}

.three-col-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.three-col-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.three-col-card:hover .three-col-content ul {
    opacity: 1;
    transform: translateY(0);
}

.three-col-content ul li {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.three-col-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .three-col-grid {
        grid-template-columns: 1fr;
    }
    
    .three-col-card {
        min-height: 300px;
    }
}

/* Five Column Section - Our Talented Teams */
.five-col-section {
    padding: 80px 0;
    margin: 0;
    background: var(--background-light);
    width: 100%;
}

.five-col-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.five-col-card {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.five-col-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.five-col-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(75, 45, 110, 0.95) 0%, rgba(123, 104, 166, 0.85) 50%, rgba(123, 104, 166, 0.7) 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 1;
}

.five-col-card:hover::after {
    transform: translateY(0);
}

.five-col-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    color: white;
}

.five-col-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
}

.five-col-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.five-col-card:hover .five-col-content ul {
    opacity: 1;
    transform: translateY(0);
}

.five-col-content ul li {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.five-col-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
}

.five-col-description {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin: 0;
}

.five-col-card:hover .five-col-description {
    opacity: 1;
    transform: translateY(0);
}

/* Project Sneakpeaks Collage Section */
.sneakpeaks-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F3F0F9 0%, #E8E0F0 100%);
}

.sneakpeaks-collage {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.sneakpeak-img {
    height: 220px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(123, 104, 166, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    padding: 8px;
}

.sneakpeak-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(123, 104, 166, 0.25);
}

@media (max-width: 992px) {
    .sneakpeak-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .sneakpeaks-section {
        padding: 60px 0;
    }
    
    .sneakpeaks-collage {
        gap: 16px;
    }
    
    .sneakpeak-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .sneakpeak-img {
        height: 120px;
        border-radius: 16px;
    }
}

/* Start a FilmPsych Chapter Section */
.chapter-section {
    position: relative;
    padding: 100px 0;
    background-image: url('attached_assets/homepage_11.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.chapter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 60, 115, 0.7);
    z-index: 1;
}

.chapter-section .container {
    position: relative;
    z-index: 2;
}

.chapter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.chapter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.chapter-content h2 i {
    margin-right: 12px;
    color: #C9BFE0;
}

.chapter-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.chapter-btn {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #7B68A6;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.chapter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: #F3F0F9;
}

@media (max-width: 768px) {
    .chapter-section {
        padding: 60px 0;
    }
    
    .chapter-content h2 {
        font-size: 2rem;
    }
    
    .chapter-content p {
        font-size: 1rem;
    }
}

/* Upcoming Programs Section */
.upcoming-programs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4B3C73 0%, #5D4E8C 50%, #6B5A9E 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 32px rgba(123, 104, 166, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 139, 196, 0.15);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(123, 104, 166, 0.2);
}

.program-timing {
    display: inline-block;
    background: linear-gradient(135deg, #9B8BC4 0%, #7B68A6 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #5D4E8C;
    margin-bottom: 15px;
}

.program-card:nth-child(1) h3,
.program-card:nth-child(1) p {
    color: #1E3A5F;
}

.program-card:nth-child(2) h3,
.program-card:nth-child(2) p {
    color: #4A3A6B;
}

.program-card:nth-child(3) h3,
.program-card:nth-child(3) p {
    color: #5A7A5A;
}

.program-card p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.7;
}

.program-note {
    color: #7B68A6;
    font-size: 0.95rem;
    margin-top: 12px;
}

.sponsor-badge {
    margin-top: 18px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
    border: 1px solid #E6C89A;
    border-radius: 12px;
    color: #9B6B3D;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.sponsor-badge i {
    margin-right: 8px;
    color: #D4A053;
}

.internship-photos-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.internship-photo {
    width: calc(33.333% - 20px);
    max-width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(123, 104, 166, 0.15);
    background: white;
    padding: 8px;
}

.remote-note {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #FFD1DC;
    font-style: italic;
}

.remote-note i {
    margin-right: 8px;
    color: #FFE4EC;
}

@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .internship-photos-row {
        flex-direction: column;
        align-items: center;
    }
    
    .internship-photo {
        width: 90%;
        max-width: 400px;
        height: 180px;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('attached_assets/about_hero_bg.png') center center / cover no-repeat;
    opacity: 0.70;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 30, 70, 0.65) 0%, rgba(60, 45, 100, 0.6) 50%, rgba(80, 60, 120, 0.55) 100%);
    z-index: 1;
    overflow: hidden;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

/* Sparkles Animation */
.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: sparkle-twinkle 2s ease-in-out infinite;
    box-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px rgba(255, 255, 255, 0.5);
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: white;
}

.sparkle::before {
    width: 2px;
    height: 16px;
    left: 3px;
    top: -4px;
    border-radius: 2px;
}

.sparkle::after {
    width: 16px;
    height: 2px;
    left: -4px;
    top: 3px;
    border-radius: 2px;
}

.sparkle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 25%; left: 85%; animation-delay: 0.3s; }
.sparkle-3 { top: 60%; left: 15%; animation-delay: 0.6s; }
.sparkle-4 { top: 70%; left: 80%; animation-delay: 0.9s; }
.sparkle-5 { top: 35%; left: 25%; animation-delay: 1.2s; }
.sparkle-6 { top: 45%; left: 75%; animation-delay: 1.5s; }
.sparkle-7 { top: 20%; left: 60%; animation-delay: 0.4s; }
.sparkle-8 { top: 75%; left: 45%; animation-delay: 0.8s; }

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

.animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-left.animated,
.animate-fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.about-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.about-section-block {
    padding: 80px 0;
    background: white;
}

.about-section-alt {
    background: linear-gradient(135deg, #E8E0F0 0%, #D8CCE8 100%);
}

.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-two-col-reverse {
    direction: rtl;
}

.about-two-col-reverse > * {
    direction: ltr;
}

.about-col-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #5D4E8C;
    margin-bottom: 1.5rem;
}

.about-col-text h2 i {
    margin-right: 12px;
    color: #9B8BC4;
}

.about-col-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.about-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 14px 32px;
    background: linear-gradient(135deg, #7B68A6 0%, #5D4E8C 100%);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(123, 104, 166, 0.3);
}

.about-btn i {
    margin-right: 8px;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(123, 104, 166, 0.4);
}

.about-section-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(123, 104, 166, 0.2);
    object-fit: cover;
    max-height: 400px;
}

@media (max-width: 992px) {
    .about-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-two-col-reverse {
        direction: ltr;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0;
    }
    
    .about-section-block {
        padding: 50px 0;
    }
    
    .about-col-text h2 {
        font-size: 1.8rem;
    }
}

/* You Can Make an Impact Section */
.impact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #4A3D75 0%, #5D4E8C 50%, #7B68A6 100%);
    overflow: hidden;
}

.impact-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.impact-sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    animation: sparkleFloat 4s ease-in-out infinite;
}

.sparkle-1 { top: 10%; left: 5%; animation-delay: 0s; }
.sparkle-2 { top: 20%; right: 8%; animation-delay: 1s; }
.sparkle-3 { bottom: 15%; left: 10%; animation-delay: 2s; }
.sparkle-4 { bottom: 25%; right: 5%; animation-delay: 0.5s; }

@keyframes sparkleFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0) scale(1); }
    50% { opacity: 0.8; transform: translateY(-10px) scale(1.2); }
}

.impact-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: white;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: 5%;
    animation: shapeFloat 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 50%;
    animation: shapeFloat 7s ease-in-out infinite;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.impact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #FFD1DC !important;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.impact-title .pink-text {
    color: #FFD1DC !important;
}

.impact-title i {
    margin-right: 15px;
    color: #FFD1DC;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7B68A6, #9B8BC4, #5D4E8C);
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E8E0F0 0%, #D4C5E8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #5D4E8C;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
    background: linear-gradient(135deg, #7B68A6 0%, #5D4E8C 100%);
    color: white;
    transform: scale(1.1);
}

.impact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #5D4E8C;
    margin-bottom: 15px;
}

.impact-card p {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.impact-link {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #7B68A6 0%, #5D4E8C 100%);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.impact-link i {
    margin-right: 6px;
}

.impact-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(123, 104, 166, 0.4);
}

.impact-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.impact-pill {
    display: block;
    padding: 10px 16px;
    background: linear-gradient(135deg, #F8F5FC 0%, #EDE7F6 100%);
    color: #5D4E8C;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid #E8E0F0;
}

.impact-pill i {
    margin-right: 8px;
    color: #9B8BC4;
}

.impact-pill:hover {
    background: linear-gradient(135deg, #7B68A6 0%, #5D4E8C 100%);
    color: white;
    transform: translateX(5px);
}

.impact-pill:hover i {
    color: white;
}

@media (max-width: 1200px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 60px 0;
    }
    
    .impact-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Donate Section */
.donate-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F5FC 0%, #EDE7F6 100%);
}

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

.donate-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #5D4E8C;
    margin-bottom: 1.5rem;
}

.donate-text h2 i {
    margin-right: 15px;
    color: #9B8BC4;
}

.donate-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.donate-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #E87C9E 0%, #D4668A 100%);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(232, 124, 158, 0.35);
}

.donate-btn i {
    margin-right: 10px;
}

.donate-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(232, 124, 158, 0.45);
}

.donate-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(123, 104, 166, 0.25);
    object-fit: cover;
    max-height: 450px;
}

@media (max-width: 992px) {
    .donate-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .donate-image {
        order: -1;
    }
    
    .donate-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .donate-section {
        padding: 60px 0;
    }
    
    .donate-text h2 {
        font-size: 1.8rem;
    }
}

/* Team Cards Grid Styles */
.team-section {
    background: linear-gradient(135deg, #F8F5FC 0%, #EDE7F6 100%);
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.team-card-photo {
    width: 140px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    background: #EDE7F6;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8E0F0 0%, #D4C5E8 100%);
}

.team-card-photo-placeholder i {
    font-size: 4rem;
    color: #9B8BC4;
}

.team-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-card-position {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Pastel Colors by Position */
.team-card-founder {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4EC 100%);
    border-color: #FFB6C1;
}

.team-card-director {
    background: linear-gradient(135deg, #E8F4FD 0%, #D1E9FA 100%);
    border-color: #87CEEB;
}

.team-card-partnerships {
    background: linear-gradient(135deg, #F0FFF0 0%, #E0FFE0 100%);
    border-color: #98FB98;
}

.team-card-events {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFEFD5 100%);
    border-color: #FFD700;
}

.team-card-programs {
    background: linear-gradient(135deg, #F5F0FF 0%, #E8E0F5 100%);
    border-color: #DDA0DD;
}

.team-card-chapters {
    background: linear-gradient(135deg, #E0FFFF 0%, #D0F5F5 100%);
    border-color: #40E0D0;
}

.team-card-media {
    background: linear-gradient(135deg, #FFF5EE 0%, #FFE4D5 100%);
    border-color: #FFA07A;
}

.team-card-marketing {
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F0FA 100%);
    border-color: #6495ED;
}

.team-card-visual {
    background: linear-gradient(135deg, #FFFAF0 0%, #FFF0DB 100%);
    border-color: #F0E68C;
}

.team-card-editorial {
    background: linear-gradient(135deg, #F8F0FF 0%, #EFE0FF 100%);
    border-color: #BA55D3;
}

@media (max-width: 1200px) {
    .team-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .team-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .team-card-photo {
        width: 120px;
        height: 140px;
    }
}

/* Creative Production Studio Styles */
.team-cards-centered {
    justify-content: center;
}

.studio-department {
    margin-bottom: 60px;
}

.department-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #E8E0F0;
}

.department-header i {
    font-size: 1.8rem;
    color: #7B68A6;
    background: linear-gradient(135deg, #E8E0F0 0%, #D4C5E8 100%);
    padding: 15px;
    border-radius: 50%;
}

.department-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5D4E8C;
    margin: 0;
}

/* Artist Team Groups */
.artist-team {
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.artist-team:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.artist-team-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 20px;
    border-radius: 30px;
    width: fit-content;
}

.artist-team-header i {
    font-size: 1.2rem;
}

.artist-team-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

/* Team Color Themes */
.team-zen-den {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
}

.team-lilies {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
    color: #AD1457;
}

.team-noodles {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #E65100;
}

.team-silly {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #1565C0;
}

.team-five {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    color: #7B1FA2;
}

.artist-team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F8F5FC;
    padding: 12px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.mini-card:hover {
    background: #E8E0F0;
    transform: translateX(5px);
}

.mini-card-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #9B8BC4 0%, #7B68A6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-card-icon i {
    font-size: 0.9rem;
    color: white;
}

.mini-card span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* Writers Grid */
.writers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.writer-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid #E8E0F0;
}

.writer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #9B8BC4;
}

.writer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F5F0FF 0%, #E8E0F0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.writer-icon i {
    font-size: 1.3rem;
    color: #7B68A6;
}

.writer-card span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.writer-card-coming-soon {
    background: linear-gradient(135deg, #F8F5FC 0%, #EDE7F6 100%);
    border-style: dashed;
}

.writer-card-coming-soon span {
    color: #9B8BC4;
    font-style: italic;
}

@media (max-width: 1200px) {
    .writers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .writers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artist-team-members {
        flex-direction: column;
    }
    
    .department-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .writers-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-team {
        padding: 20px;
    }
}

/* Content Managers Grid */
.content-managers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.manager-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.manager-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.manager-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.manager-icon i {
    font-size: 1.8rem;
}

.manager-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.manager-focus {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    padding: 8px 16px;
    background: #F8F5FC;
    border-radius: 20px;
    display: inline-block;
}

/* Manager Card Themes */
.manager-books {
    border-left-color: #FF9AA2;
}

.manager-books .manager-icon {
    background: linear-gradient(135deg, #FFE5E8 0%, #FFCCD2 100%);
}

.manager-books .manager-icon i {
    color: #E85A71;
}

.manager-films {
    border-left-color: #A0D2DB;
}

.manager-films .manager-icon {
    background: linear-gradient(135deg, #E0F4F7 0%, #C5E8ED 100%);
}

.manager-films .manager-icon i {
    color: #4A9BA8;
}

.manager-writing {
    border-left-color: #C7B3E5;
}

.manager-writing .manager-icon {
    background: linear-gradient(135deg, #F0E8F8 0%, #DFD0F0 100%);
}

.manager-writing .manager-icon i {
    color: #8B6BB5;
}

/* Media Team Grid */
.media-team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.media-member-card {
    background: white;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid #E8E0F0;
}

.media-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #9B8BC4;
}

.media-member-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F5F0FF 0%, #E8E0F0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.media-member-icon i {
    font-size: 1.2rem;
    color: #7B68A6;
}

.media-member-card span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.media-member-hiring {
    background: linear-gradient(135deg, #F8F5FC 0%, #EDE7F6 100%);
    border-style: dashed;
}

.media-member-hiring span {
    color: #9B8BC4;
    font-style: italic;
}

.media-member-hiring .media-member-icon {
    background: linear-gradient(135deg, #E8E0F0 0%, #D4C5E8 100%);
}

@media (max-width: 1200px) {
    .content-managers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .media-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .content-managers-grid {
        grid-template-columns: 1fr;
    }
    
    .media-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .media-team-grid {
        grid-template-columns: 1fr;
    }
}

/* Research Page Styles */
.semester-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #7B68A6 0%, #9B8BC4 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    margin-left: 15px;
    font-weight: 500;
    vertical-align: middle;
}

.research-mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mentor-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid #E8E0F0;
}

.mentor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #9B8BC4;
}

.mentor-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.mentor-icon i {
    font-size: 1.4rem;
    color: #4CAF50;
}

.mentor-card span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    display: block;
}

.mentor-card-coming {
    background: linear-gradient(135deg, #F8F5FC 0%, #EDE7F6 100%);
    border-style: dashed;
}

.mentor-card-coming span {
    color: #9B8BC4;
    font-style: italic;
}

.mentor-card-coming .mentor-icon {
    background: linear-gradient(135deg, #E8E0F0 0%, #D4C5E8 100%);
}

.mentor-card-coming .mentor-icon i {
    color: #9B8BC4;
}

@media (max-width: 1200px) {
    .research-mentors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .research-mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .semester-badge {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .research-mentors-grid {
        grid-template-columns: 1fr;
    }
}

/* Creative Works Page Styles */
.creative-works-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
    margin-bottom: 100px;
}

.creative-works-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('attached_assets/image_1769251133348.png');
    background-size: cover;
    background-position: center top;
    opacity: 0.63;
    z-index: 1;
}

.creative-works-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 30, 70, 0.6) 0%, rgba(60, 45, 100, 0.55) 50%, rgba(80, 60, 120, 0.5) 100%);
    z-index: 2;
}

.sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.8),
                0 0 20px 6px rgba(255, 209, 220, 0.6),
                0 0 30px 10px rgba(255, 255, 255, 0.3);
    animation: sparkle-twinkle 2s ease-in-out infinite;
}

.sparkle::before {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.sparkle-1 { top: 10%; left: 5%; animation-delay: 0s; }
.sparkle-2 { top: 15%; left: 25%; animation-delay: 0.3s; }
.sparkle-3 { top: 8%; left: 50%; animation-delay: 0.6s; }
.sparkle-4 { top: 20%; left: 75%; animation-delay: 0.9s; }
.sparkle-5 { top: 12%; left: 90%; animation-delay: 1.2s; }
.sparkle-6 { top: 40%; left: 8%; animation-delay: 0.4s; }
.sparkle-7 { top: 60%; left: 15%; animation-delay: 0.7s; }
.sparkle-8 { top: 70%; left: 35%; animation-delay: 1s; }
.sparkle-9 { top: 55%; left: 85%; animation-delay: 0.2s; }
.sparkle-10 { top: 75%; left: 70%; animation-delay: 0.5s; }
.sparkle-11 { top: 85%; left: 45%; animation-delay: 0.8s; }
.sparkle-12 { top: 80%; left: 92%; animation-delay: 1.1s; }

.creative-works-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
}

.creative-works-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #FFFFFF !important;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                 0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

.creative-works-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.creative-works-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .creative-works-hero {
        min-height: 400px;
        padding: 60px 20px;
    }
    
    .creative-works-title {
        font-size: 2.5rem;
    }
    
    .creative-works-subtitle {
        font-size: 1.1rem;
    }
    
    .creative-works-tagline {
        font-size: 0.9rem;
    }
}

/* Featured Projects Section */
.featured-projects-section {
    padding: 100px 20px;
    padding-top: 80px;
    margin-top: 80px;
    background: linear-gradient(180deg, #F8F5FC 0%, #FFFFFF 100%);
}

.featured-projects-section .section-header {
    margin-bottom: 50px;
}

.featured-projects-section .section-header h2 {
    color: #5D4E8C;
}

.featured-projects-section .section-header h2 i {
    color: #FFD1DC;
}

.sneakpeek-note {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #9B8BC4;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-style: italic;
    z-index: 15;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.spotlight-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(93, 78, 140, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.spotlight-slideshow {
    position: relative;
    background: #F8F5FC;
    aspect-ratio: 1;
    overflow: hidden;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slideshow-btn:hover {
    background: #7B68A6;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slideshow-btn i {
    font-size: 1rem;
    color: #5D4E8C;
}

.slideshow-btn:hover i {
    color: white;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

.dot.active {
    background: #7B68A6;
    border-color: white;
    transform: scale(1.2);
}

.spotlight-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD1DC 0%, #FFBCD0 100%);
    color: #5D4E8C;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
}

.spotlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #5D4E8C;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.spotlight-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.spotlight-status {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 18px 24px;
    border-radius: 16px;
    border-left: 4px solid #4CAF50;
}

.spotlight-status i {
    color: #4CAF50;
    font-size: 1.3rem;
    margin-top: 2px;
}

.spotlight-status span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2E7D32;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .spotlight-card {
        grid-template-columns: 1fr;
    }
    
    .spotlight-slideshow {
        aspect-ratio: 4/3;
        max-height: 400px;
    }
    
    .spotlight-content {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .spotlight-title {
        font-size: 1.6rem;
    }
    
    .spotlight-description {
        font-size: 1rem;
    }
    
    .spotlight-content {
        padding: 30px 20px;
    }
}

/* Explore Our Creative Universe Section */
.explore-universe-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F5FC 100%);
}

.explore-universe-section .section-header h2 {
    color: #5D4E8C;
}

.explore-universe-section .section-header h2 i {
    color: #9B8BC4;
}

.universe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.universe-card {
    background: linear-gradient(135deg, #F8F5FC 0%, #EDE7F6 100%);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.universe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(93, 78, 140, 0.2);
    border-color: #9B8BC4;
    background: linear-gradient(135deg, #EDE7F6 0%, #E8E0F0 100%);
}

.universe-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7B68A6 0%, #9B8BC4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.universe-card:hover .universe-icon {
    transform: scale(1.1) rotate(5deg);
}

.universe-icon i {
    font-size: 1.8rem;
    color: white;
}

.universe-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #5D4E8C;
    margin-bottom: 12px;
    font-weight: 600;
}

.universe-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .universe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .universe-grid {
        grid-template-columns: 1fr;
    }
}

/* Creative Works Sneakpeaks Section */
.cw-sneakpeaks-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F5FC 100%);
}

.cw-sneakpeaks-section .section-header h2 {
    color: #5D4E8C;
}

.cw-sneakpeaks-section .section-header h2 i {
    color: #FFD1DC;
}

/* Coming Projects */
.coming-projects {
    margin-top: 80px;
    text-align: center;
}

.coming-projects h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #5D4E8C;
    margin-bottom: 40px;
    font-weight: 600;
}

.coming-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.coming-project-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 35px rgba(93, 78, 140, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #E8E0F0;
}

.coming-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(93, 78, 140, 0.15);
    border-color: #9B8BC4;
}

.coming-project-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD1DC 0%, #FFBCD0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.coming-project-icon i {
    font-size: 1.8rem;
    color: #5D4E8C;
}

.coming-project-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #7B68A6;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.coming-project-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .coming-projects-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

/* Animation Studios Section */
.animation-studios-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #5D4E8C 0%, #7B68A6 50%, #9B8BC4 100%);
}

.animation-studios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.animation-studios-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.animation-studios-text h2 i {
    color: #FFD1DC;
    margin-right: 15px;
}

.studios-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #FFD1DC;
    font-style: italic;
    margin-bottom: 25px;
}

.studios-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.studios-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    margin-top: 20px;
}

.studios-status-badge i {
    color: #FFD1DC;
    font-size: 1.2rem;
}

.studios-status-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}

.animation-studios-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.animation-studios-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .animation-studios-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .animation-studios-text h2 {
        font-size: 2rem;
    }
    
    .animation-studios-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Create With Us Section */
.create-with-us-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #5D4E8C 0%, #7B68A6 100%);
    position: relative;
    overflow: hidden;
}

.create-with-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('attached_assets/image_1769251133348.png');
    background-size: cover;
    background-position: center top;
    opacity: 0.2;
    z-index: 1;
}

.create-with-us-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 78, 140, 0.7) 0%, rgba(123, 104, 166, 0.6) 100%);
    z-index: 1;
}

.create-with-us-section .container {
    position: relative;
    z-index: 2;
}

.create-with-us-section .section-header h2 {
    color: white;
}

.create-with-us-section .section-header h2 i {
    color: #FFD1DC;
}

.create-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.create-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.create-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.create-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD1DC 0%, #FFBCD0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.create-card-icon i {
    font-size: 2rem;
    color: #5D4E8C;
}

.create-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #5D4E8C;
    margin-bottom: 15px;
    font-weight: 600;
}

.create-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.create-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #7B68A6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.create-card-btn:hover {
    color: #5D4E8C;
    gap: 12px;
}

@media (max-width: 992px) {
    .create-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Creative CTA Section */
.creative-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #FFD1DC 0%, #FFBCD0 50%, #E8E0F0 100%);
    text-align: center;
}

.creative-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #5D4E8C;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.5;
    font-weight: 600;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5D4E8C 0%, #7B68A6 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(93, 78, 140, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(93, 78, 140, 0.4);
}

.cta-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .creative-cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Advisors & Professionals Styles */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advisor-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #7B68A6;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.advisor-photo {
    width: 120px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: #EDE7F6;
}

.advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8E0F0 0%, #D4C5E8 100%);
}

.advisor-photo-placeholder i {
    font-size: 3rem;
    color: #9B8BC4;
}

.advisor-info {
    flex: 1;
}

.advisor-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #5D4E8C;
    margin-bottom: 12px;
    font-weight: 600;
}

.advisor-bio {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.advisor-card-coming {
    background: linear-gradient(135deg, #F8F5FC 0%, #EDE7F6 100%);
    border-left-style: dashed;
}

.advisor-card-coming .advisor-info h3 {
    color: #9B8BC4;
    font-style: italic;
}

.advisor-card-coming .advisor-bio {
    color: #9B8BC4;
    font-style: italic;
}

@media (max-width: 992px) {
    .advisors-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .advisor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .advisor-photo {
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .five-col-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .five-col-grid {
        grid-template-columns: 1fr;
    }
    
    .five-col-card {
        min-height: 280px;
    }
}

/* Partners Section */
.partners-section {
    background: var(--white);
    padding: 4rem 0;
}

.partners-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-cta {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 2rem;
}

.partners-cta a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.partners-cta a:hover {
    color: var(--secondary-purple);
    text-decoration: underline;
}

.partners-donation-note {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-top: 1.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 2rem;
    }
    
    .partner-logo img {
        height: 40px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 2rem 5rem;
    background: var(--cream);
    margin: 0 -2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--light-purple);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--light-sage);
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--primary-purple);
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Hero 2026 Background Image */
.hero-2026-bg {
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
}

.hero-2026-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('attached_assets/homepage_1.png') center center / cover no-repeat;
    opacity: 0.92;
    pointer-events: none;
    z-index: 0;
}

.hero-2026-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(60, 45, 90, 0.55) 0%,
        rgba(40, 25, 70, 0.4) 50%,
        rgba(70, 55, 100, 0.3) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-2026-bg .hero-content {
    position: relative;
    z-index: 2;
}

/* Sparkle Animation */
.hero-2026-bg .sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.hero-2026-bg .sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 20px 8px rgba(255, 255, 255, 1), 0 0 40px 16px rgba(255, 220, 180, 0.9);
    animation: sparkle-float 2.5s ease-in-out infinite;
}

.hero-2026-bg .sparkle.large {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 30px 12px rgba(255, 255, 255, 1), 0 0 60px 25px rgba(255, 220, 180, 1);
}

.hero-2026-bg .sparkle:nth-child(1) { left: 5%; top: 15%; animation-delay: 0s; }
.hero-2026-bg .sparkle:nth-child(2) { left: 12%; top: 45%; animation-delay: 0.8s; }
.hero-2026-bg .sparkle:nth-child(3) { left: 18%; top: 75%; animation-delay: 1.6s; }
.hero-2026-bg .sparkle:nth-child(4) { left: 25%; top: 25%; animation-delay: 2.4s; }
.hero-2026-bg .sparkle:nth-child(5) { left: 32%; top: 55%; animation-delay: 0.4s; }
.hero-2026-bg .sparkle:nth-child(6) { left: 38%; top: 85%; animation-delay: 3.2s; }
.hero-2026-bg .sparkle:nth-child(7) { left: 45%; top: 10%; animation-delay: 1.2s; }
.hero-2026-bg .sparkle:nth-child(8) { left: 52%; top: 35%; animation-delay: 4s; }
.hero-2026-bg .sparkle:nth-child(9) { left: 58%; top: 65%; animation-delay: 2s; }
.hero-2026-bg .sparkle:nth-child(10) { left: 65%; top: 20%; animation-delay: 4.8s; }
.hero-2026-bg .sparkle:nth-child(11) { left: 72%; top: 50%; animation-delay: 0.6s; }
.hero-2026-bg .sparkle:nth-child(12) { left: 78%; top: 80%; animation-delay: 3.6s; }
.hero-2026-bg .sparkle:nth-child(13) { left: 85%; top: 30%; animation-delay: 1.4s; }
.hero-2026-bg .sparkle:nth-child(14) { left: 92%; top: 60%; animation-delay: 2.8s; }
.hero-2026-bg .sparkle:nth-child(15) { left: 8%; top: 90%; animation-delay: 5.2s; }
.hero-2026-bg .sparkle:nth-child(16) { left: 22%; top: 8%; animation-delay: 3.8s; }
.hero-2026-bg .sparkle:nth-child(17) { left: 48%; top: 92%; animation-delay: 1s; }
.hero-2026-bg .sparkle:nth-child(18) { left: 68%; top: 5%; animation-delay: 4.4s; }
.hero-2026-bg .sparkle:nth-child(19) { left: 88%; top: 42%; animation-delay: 2.2s; }
.hero-2026-bg .sparkle:nth-child(20) { left: 95%; top: 88%; animation-delay: 0.2s; }
.hero-2026-bg .sparkle:nth-child(21) { left: 3%; top: 62%; animation-delay: 5s; }
.hero-2026-bg .sparkle:nth-child(22) { left: 28%; top: 72%; animation-delay: 3s; }
.hero-2026-bg .sparkle:nth-child(23) { left: 42%; top: 48%; animation-delay: 1.8s; }
.hero-2026-bg .sparkle:nth-child(24) { left: 62%; top: 78%; animation-delay: 4.2s; }

@keyframes sparkle-float {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.6);
    }
    15% {
        opacity: 1;
        transform: translateY(-8px) scale(1.4);
    }
    35% {
        opacity: 0.9;
        transform: translateY(-20px) scale(1.1);
    }
    55% {
        opacity: 1;
        transform: translateY(-12px) scale(1.5);
    }
    80% {
        opacity: 0.7;
        transform: translateY(-30px) scale(0.9);
    }
}

.hero-title-white {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-white {
    color: #FFFFFF !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-badge-dark {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    color: #FFFFFF !important;
    font-size: 1.3rem;
    padding: 0.8rem 2rem;
    gap: 0.7rem;
}

.hero-badge-dark i {
    color: #FFFFFF !important;
    font-size: 1.2rem;
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero 2026 Section */
.hero-2026 {
    padding: 4rem 0 3rem;
    background: var(--off-white);
}

.hero-2026-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-2026-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-2026-main {
    align-self: center;
}

.hero-2026-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-2026-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-2026-cta {
    position: relative;
    display: inline-block;
}

.hero-2026-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-purple);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-2026-btn:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
}

.hero-2026-sidebar {
    align-self: center;
    padding-bottom: 1rem;
}

.hero-2026-sidebar-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.hero-2026-sidebar-label i {
    color: var(--primary-purple);
    margin-right: 0.25rem;
}

.hero-2026-picks {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-2026-pick {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.hero-2026-pick:hover {
    transform: translateX(4px);
}

.hero-2026-pick img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.hero-2026-pick span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.hero-2026-image {
    align-self: flex-end;
}

.hero-2026-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
}

/* Hero 2026 Responsive */
@media (max-width: 992px) {
    .hero-2026-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-2026-image {
        grid-column: span 2;
        text-align: center;
    }
    
    .hero-2026-image img {
        max-width: 350px;
    }
    
    .hero-2026-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero-2026 {
        padding: 3rem 0 2rem;
    }
    
    .hero-2026-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-2026-main {
        text-align: center;
    }
    
    .hero-2026-title {
        font-size: 2rem;
    }
    
    .hero-2026-sidebar {
        order: 3;
    }
    
    .hero-2026-image {
        grid-column: span 1;
        order: 2;
    }
    
    .hero-2026-image img {
        max-width: 280px;
        margin: 0 auto;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-purple);
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-icons-banner {
    margin: 3rem 0;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon-element {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: iconFloat 6s ease-in-out infinite;
}

.icon-element:hover {
    transform: scale(1.2);
    opacity: 1;
}

.icon-element.brain {
    background: var(--primary-purple);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.icon-element.film-strip {
    background: var(--secondary-pink);
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.icon-element.book {
    background: var(--sage-green);
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.icon-element.palette {
    background: var(--pretty-blue);
    top: 30%;
    right: 10%;
    animation-delay: 3s;
}

.icon-element.heart {
    background: var(--secondary-pink);
    bottom: 20%;
    right: 25%;
    animation-delay: 4s;
}

.icon-element.microscope {
    background: var(--sage-green);
    top: 40%;
    left: 5%;
    animation-delay: 5s;
}

.icon-element.camera {
    background: var(--text-medium);
    bottom: 10%;
    left: 30%;
    animation-delay: 2.5s;
}

.icon-element.theater {
    background: var(--primary-purple);
    top: 15%;
    left: 50%;
    animation-delay: 1.5s;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotate(5deg); 
    }
    50% { 
        transform: translateY(-25px) rotate(-3deg); 
    }
    75% { 
        transform: translateY(-10px) rotate(2deg); 
    }
}

.hero-image,
.section-image,
.partnership-logo,
.featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: transform 0.3s ease;
}

.hero-image:hover,
.section-image:hover,
.featured-image:hover {
    transform: scale(1.02);
}

.hero-description {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
}

.btn-secondary {
    background: var(--sage-green);
    color: white;
}

/* Ripple Button Styles */
.ripple-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1.1rem 2.5rem;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ripple-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.ripple-btn:active {
    transform: translateY(0);
}

.ripple-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ripple-animation 0.5s ease-out forwards;
}

@keyframes ripple-animation {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.ripple-btn-primary {
    background: linear-gradient(135deg, #6B5B95 0%, #8B7BAF 100%);
    color: white;
}

.ripple-btn-secondary {
    background: linear-gradient(135deg, #9B8FB8 0%, #C4B8D9 100%);
    color: #3D3356;
}

.ripple-btn-tertiary {
    background: linear-gradient(135deg, #4A5568 0%, #5A6A7A 100%);
    color: white;
}

/* Teams Section */
.teams-section {
    padding: 5rem 0;
    background: var(--white);
    margin: 4rem -2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.teams-section > .container > h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.teams-section > .container > h2 i {
    color: var(--primary-purple);
}

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

.team-category-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-medium);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.team-category-card.coming-soon-card {
    background: linear-gradient(135deg, rgba(138, 99, 210, 0.03), rgba(255, 154, 158, 0.03));
    border: 2px dashed rgba(138, 99, 210, 0.3);
}

.team-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.team-icon {
    width: 50px;
    height: 50px;
    background: var(--light-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.3rem;
}

.team-header h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.coming-soon-badge {
    background: var(--primary-purple);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.team-roles {
    padding-left: 0.5rem;
}

.role-item {
    margin-bottom: 1.25rem;
}

.role-item:last-child {
    margin-bottom: 0;
}

.role-item h4 {
    color: var(--primary-purple);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.role-item h4 i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.role-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.coming-soon-text {
    color: var(--primary-purple);
    font-style: italic;
    font-size: 0.9rem !important;
}

.help-cta {
    color: var(--secondary-pink) !important;
    font-weight: 500;
}

.role-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(138, 99, 210, 0.1);
}

.role-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.role-section h4 {
    color: var(--primary-purple);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.role-section h4 i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.team-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.team-member-card:hover {
    transform: translateY(-3px);
}

.team-member-card.placeholder-card {
    opacity: 0.6;
}

.member-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.member-placeholder i {
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.member-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--primary-purple);
}

.member-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.member-role {
    font-size: 0.7rem;
    color: var(--primary-purple);
    margin-top: 0.25rem;
}

.hiring-section {
    background: var(--light-sage);
    padding: 1rem;
    border-radius: 12px;
    border: 1px dashed var(--sage-green);
}

.hiring-section h4 {
    color: var(--sage-green);
}

.hiring-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.btn-outline-small {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.btn-outline-small:hover {
    background: var(--primary-purple);
    color: white;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-text h2 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.mission-text h2 i {
    color: var(--sage-green);
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-image {
    text-align: center;
}

/* About Section */
.about-content {
    background: white;
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-block {
    margin-bottom: 2.5rem;
}

.text-block h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.text-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-image-section {
    text-align: center;
}

.image-caption {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-light);
}

/* Writers Section */
.writers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.writer-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.writer-card:hover {
    transform: translateY(-5px);
}

.writer-avatar {
    font-size: 4rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.writer-card h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.writer-role {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.writer-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.writer-achievements span {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.featured-writer {
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
    border: 2px solid var(--primary-purple);
}

.featured-writer .writer-avatar {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.writer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.writer-social a {
    color: var(--primary-pink);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-pink);
}

.writer-social a:hover {
    color: white;
    background: var(--primary-purple);
    transform: scale(1.1);
}

/* Universal Background Patterns */
.section {
    position: relative;
    overflow: hidden;
}

.section::before,
.section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Floating Pattern Elements */
.floating-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pattern-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatPattern 12s ease-in-out infinite;
}

.pattern-element.spiral-1 {
    width: 60px;
    height: 60px;
    border: 2px dashed var(--primary-purple);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.pattern-element.spiral-2 {
    width: 90px;
    height: 90px;
    border: 3px dotted var(--primary-pink);
    top: 20%;
    right: 8%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.pattern-element.spiral-3 {
    width: 75px;
    height: 75px;
    border: 2px solid var(--primary-blue);
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.pattern-element.spiral-4 {
    width: 100px;
    height: 100px;
    border: 2px double var(--primary-purple);
    bottom: 25%;
    right: 12%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.pattern-element.spiral-5 {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-pink);
    top: 40%;
    left: 3%;
    animation-delay: 8s;
    animation-duration: 14s;
}

.pattern-element.spiral-6 {
    width: 110px;
    height: 110px;
    border: 2px dashed var(--primary-blue);
    top: 60%;
    right: 5%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.pattern-element.spiral-7 {
    width: 65px;
    height: 65px;
    border: 3px dotted var(--primary-purple);
    bottom: 5%;
    left: 50%;
    animation-delay: 12s;
    animation-duration: 17s;
}

.pattern-element.spiral-8 {
    width: 85px;
    height: 85px;
    border: 2px solid var(--primary-pink);
    top: 5%;
    left: 30%;
    animation-delay: 14s;
    animation-duration: 19s;
}

/* Decorative Geometric Shapes */
.pattern-element.triangle-1 {
    width: 0;
    height: 0;
    border: none;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--primary-purple);
    border-radius: 0;
    top: 30%;
    right: 25%;
    opacity: 0.1;
    animation-delay: 1s;
}

.pattern-element.triangle-2 {
    width: 0;
    height: 0;
    border: none;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid var(--primary-pink);
    border-radius: 0;
    bottom: 40%;
    left: 25%;
    opacity: 0.12;
    animation-delay: 7s;
}

.pattern-element.square-1 {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 8px;
    top: 70%;
    left: 20%;
    opacity: 0.1;
    animation-delay: 3s;
}

.pattern-element.square-2 {
    width: 35px;
    height: 35px;
    background: var(--primary-purple);
    border-radius: 6px;
    top: 15%;
    right: 40%;
    opacity: 0.11;
    animation-delay: 9s;
}

/* Complex Spiral Animations */
@keyframes floatPattern {
    0%, 100% {
        transform: rotate(0deg) translateY(0px) scale(1);
        opacity: 0.15;
    }
    16% {
        transform: rotate(60deg) translateY(-25px) scale(1.1);
        opacity: 0.25;
    }
    33% {
        transform: rotate(120deg) translateY(-15px) scale(0.9);
        opacity: 0.35;
    }
    50% {
        transform: rotate(180deg) translateY(20px) scale(1.15);
        opacity: 0.3;
    }
    66% {
        transform: rotate(240deg) translateY(10px) scale(0.85);
        opacity: 0.4;
    }
    83% {
        transform: rotate(300deg) translateY(-30px) scale(1.05);
        opacity: 0.2;
    }
}

/* Additional Spiral Decorations */
.spiral-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0.2;
    animation: spiralFloat 6s ease-in-out infinite;
    z-index: 1;
}

.spiral-decoration:nth-child(1) {
    top: 20%;
    left: 20%;
    border-style: solid;
    animation-delay: 1s;
}

.spiral-decoration:nth-child(2) {
    top: 30%;
    right: 15%;
    border-color: var(--primary-purple);
    border-style: dashed;
    animation-delay: 3s;
}

.spiral-decoration:nth-child(3) {
    bottom: 25%;
    left: 15%;
    border-color: var(--primary-pink);
    border-style: dotted;
    animation-delay: 5s;
}

.spiral-decoration:nth-child(4) {
    top: 50%;
    right: 30%;
    border-color: var(--primary-blue);
    border-style: double;
    animation-delay: 7s;
    width: 60px;
    height: 60px;
}

.spiral-decoration:nth-child(5) {
    bottom: 40%;
    left: 40%;
    border-color: var(--primary-purple);
    border-style: solid;
    animation-delay: 9s;
    width: 90px;
    height: 90px;
}

@keyframes spiralFloat {
    0%, 100% {
        transform: rotate(0deg) translateY(0px) scale(1);
        opacity: 0.2;
    }
    33% {
        transform: rotate(120deg) translateY(-15px) scale(1.15);
        opacity: 0.4;
    }
    66% {
        transform: rotate(240deg) translateY(10px) scale(0.85);
        opacity: 0.6;
    }
}

/* Pulsing Pattern Animation */
@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
        box-shadow: 0 0 0 0 rgba(177, 156, 217, 0.3);
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
        box-shadow: 0 0 0 10px rgba(177, 156, 217, 0);
    }
}

.pattern-element.pulse-1 {
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border-radius: 50%;
    top: 25%;
    left: 80%;
    animation: pulseGlow 3s ease-in-out infinite;
    animation-delay: 0s;
}

.pattern-element.pulse-2 {
    width: 15px;
    height: 15px;
    background: var(--primary-pink);
    border-radius: 50%;
    bottom: 20%;
    right: 35%;
    animation: pulseGlow 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.pattern-element.pulse-3 {
    width: 18px;
    height: 18px;
    background: var(--primary-blue);
    border-radius: 50%;
    top: 80%;
    left: 70%;
    animation: pulseGlow 2.5s ease-in-out infinite;
    animation-delay: 3s;
}

/* Blogs Section */
.blog-header-image,
.blog-footer-image {
    text-align: center;
    margin: 2rem 0;
}

.blog-filter-section {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.filter-dropdown label {
    font-weight: 600;
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.filter-dropdown select {
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--light-purple);
    border-radius: 12px;
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.filter-dropdown select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(177, 156, 217, 0.1);
}

.filter-dropdown select:hover {
    border-color: var(--primary-pink);
}

.blog-section-image {
    width: 100vw;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    object-fit: cover;
    margin-left: calc(-50vw + 50%);
}

.blogs-featured {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 3rem 0;
}

.blogs-featured .featured-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.blogs-featured::before,
.blogs-featured::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-purple);
    border-radius: 50%;
    opacity: 0.3;
    animation: spiral 8s ease-in-out infinite;
}

.blogs-featured::before {
    top: 10%;
    left: 10%;
    border-style: dashed;
    animation-delay: 0s;
}

.blogs-featured::after {
    bottom: 10%;
    right: 10%;
    border-color: var(--primary-pink);
    border-style: dotted;
    animation-delay: 2s;
}

@keyframes spiral {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: rotate(180deg) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: rotate(270deg) scale(1.2);
        opacity: 0.4;
    }
}

/* Blog Articles Section Redesign */
.blogs-section {
    background: #FAF8F5;
    padding: 0;
}

.blogs-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blogs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.blogs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 78, 140, 0.85) 0%, rgba(123, 104, 166, 0.75) 100%);
    z-index: 2;
}

.blogs-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
}

.blogs-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #FFFFFF !important;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.blogs-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blogs-search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.blogs-search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 280px;
}

.blogs-search-bar i {
    color: var(--primary-purple);
    margin-right: 0.75rem;
}

.blogs-search-bar input {
    border: none;
    outline: none;
    font-size: 1rem;
    width: 100%;
    background: transparent;
}

.blogs-section .filter-dropdown {
    background: white;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blogs-section .filter-dropdown label {
    color: var(--primary-purple);
    font-weight: 600;
}

.blogs-section .filter-dropdown select {
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
}

.blogs-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: #FFFEFA;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(93, 78, 140, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(155, 139, 196, 0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(93, 78, 140, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

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

.blog-image img[src*="manchild front.png"] {
    object-position: center 20%;
}

.blog-image img[src*="shameless front.png"] {
    object-position: center 80%;
}

.blog-image img[src*="kinds front.png"] {
    object-position: center 70%;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
}

/* Pastel category tag colors */
.blog-category:has(.fa-film) {
    background: rgba(200, 180, 220, 0.9);
    color: #5D4E8C;
}

.blog-category:has(.fa-tv) {
    background: rgba(180, 210, 190, 0.9);
    color: #4A7A5A;
}

.blog-category:has(.fa-book) {
    background: rgba(180, 210, 230, 0.9);
    color: #4A6A8A;
}

.blog-category:has(.fa-palette), .blog-category:has(.fa-paint-brush) {
    background: rgba(250, 210, 190, 0.9);
    color: #8A5A4A;
}

.blog-category:has(.fa-brain) {
    background: rgba(220, 200, 230, 0.9);
    color: #6A4A7A;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.blog-meta i {
    margin-right: 0.3rem;
}

.read-more {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #FF69B4;
    gap: 1rem;
}

/* Blog CTA Section */
.blogs-cta-section {
    background: linear-gradient(135deg, #F5F0FA 0%, #E8E0F0 100%);
    padding: 60px 5%;
    margin-top: 40px;
}

.blogs-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.blogs-cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.blogs-cta-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blogs-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blogs-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blogs-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 78, 140, 0.3);
}

.blogs-cta-buttons .btn-secondary {
    background: white;
    color: var(--primary-purple);
    padding: 0.875rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.blogs-cta-buttons .btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
}

.blogs-cta-image {
    display: flex;
    justify-content: center;
}

.blogs-cta-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(93, 78, 140, 0.2);
}

@media (max-width: 768px) {
    .blogs-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .blogs-cta-buttons {
        justify-content: center;
    }
    
    .blogs-cta-image {
        order: -1;
    }
    
    .blogs-hero-title {
        font-size: 2.5rem;
    }
    
    .blogs-search-container {
        flex-direction: column;
    }
}

/* Socials Section */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.social-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.social-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-header i {
    font-size: 1.5rem;
}

.social-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.social-content {
    padding: 2rem;
}

.social-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-stats span {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Partnerships Section */
.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.partnership-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partnership-card:hover {
    transform: translateY(-5px);
}

.partnership-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.partnership-logo {
    width: 100%;
    max-width: 200px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.partnership-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.partnership-features {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.partnership-features span {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Board Members & Staff Volunteers Sections */
.board-members-grid,
.staff-volunteers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Board Members specific styling */
.board-member-card {
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink)) !important;
    border: 2px solid var(--primary-purple);
}

.member-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.member-card.featured-member {
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
    border: 2px solid var(--primary-purple);
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink), var(--primary-blue));
}

/* Position-based color coding */
.editorial-leads-grid .member-card {
    background: linear-gradient(135deg, #e6e0f5, #f0ebff) !important;
    border: 2px solid #b19cd9;
}

.artists-grid .member-card {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9) !important;
    border: 2px solid #ffb6c1;
}

.writers-grid .member-card {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb) !important;
    border: 2px solid #87ceeb;
}

.video-editors-grid .member-card {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c8) !important;
    border: 2px solid #90ee90;
}

.graphic-designer-grid .member-card {
    background: linear-gradient(135deg, #fffbf0, #fff9c4) !important;
    border: 2px solid #f0e68c;
}

.member-image {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.member-image i {
    font-size: 4rem;
    color: var(--primary-purple);
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
    border-radius: 50%;
    padding: 1.5rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.member-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 4px solid white;
}

.member-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-content h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-position {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    display: inline-block;
}

.featured-member .member-position {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-purple);
}

.member-bio {
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-shrink: 0;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #C13584, #E4405F);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(196, 53, 132, 0.4);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077B5, #00A0DC);
    color: white;
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #00A0DC, #0077B5);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Volunteer Subsections */
.volunteer-subsection {
    margin-bottom: 5rem;
}

.subsection-title {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Editorial Leads Grid */
.editorial-leads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.editorial-leads-grid .member-card {
    background: white;
}

/* Writers Grid */
.writers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.writers-grid .member-card {
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
}

/* Graphic Designer Grid */
.graphic-designer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.graphic-designer-grid .member-card {
    max-width: 400px;
    width: 100%;
    background: white;
}

/* Video Editors Grid */
.video-editors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.video-editors-grid .member-card {
    background: white;
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.artists-grid .member-card {
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
}

/* Competitions Section */
.competitions-content {
    max-width: 1200px;
    margin: 0 auto;
}

.competition-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-text h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-competitions h2,
.past-winners h2,
.submission-guidelines h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.competition-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.competition-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    padding: 1.5rem;
    position: relative;
}

.competition-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upcoming-badge {
    background: rgba(255, 255, 255, 0.3);
}

.competition-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.competition-content-card {
    padding: 2rem;
}

.competition-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.detail-item i {
    color: var(--primary-purple);
    width: 20px;
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.winner-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-3px);
}

.winner-position {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.winner-position .gold {
    color: #FFD700;
    font-size: 1.5rem;
}

.winner-position .silver {
    color: #C0C0C0;
    font-size: 1.5rem;
}

.winner-position .bronze {
    color: #CD7F32;
    font-size: 1.5rem;
}

.winner-card h3 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.winner-work {
    font-style: italic;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.winner-description {
    color: var(--text-dark);
    line-height: 1.6;
}

.submission-guidelines {
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

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

.guideline-section h3 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guideline-section ul {
    list-style: none;
    padding: 0;
}

.guideline-section li {
    background: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-purple);
}

@media (max-width: 768px) {
    .competition-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .competitions-grid {
        grid-template-columns: 1fr;
    }
    
    .guidelines-content {
        grid-template-columns: 1fr;
    }
}

/* Books Section */
.books-content {
    max-width: 1200px;
    margin: 0 auto;
}

.books-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.books-intro .intro-text h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.book-category {
    margin-bottom: 5rem;
}

.book-category h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.book-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.book-card.featured {
    border: 2px solid var(--primary-purple);
}

.book-card.coming-soon {
    opacity: 0.8;
}

.book-card.anthology {
    border-left: 4px solid var(--primary-pink);
}

.book-card.academic {
    border-left: 4px solid var(--primary-blue);
}

.book-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.book-card:hover .book-cover img {
    transform: scale(1.05);
}

.book-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coming-soon-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple)) !important;
}

.book-content {
    padding: 2rem;
}

.book-content h3 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.book-author {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.book-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.book-details span {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.book-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.book-actions .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.publication-info {
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
}

.publication-info h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

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

.info-card h3 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .books-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .book-actions {
        flex-direction: column;
    }
    
    .book-actions .btn {
        flex: none;
    }
}

/* All grids use consistent sizing */
.editorial-leads-grid,
.writers-grid,
.graphic-designer-grid,
.video-editors-grid,
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Ensure all member cards have consistent styling */
.editorial-leads-grid .member-card,
.writers-grid .member-card,
.graphic-designer-grid .member-card,
.video-editors-grid .member-card,
.artists-grid .member-card {
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 2rem;
}

/* Submit Section */
.submit-content {
    max-width: 1000px;
    margin: 0 auto;
}

.submit-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.submit-intro .intro-text h2 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.submit-intro .intro-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.submit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(138, 99, 210, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 99, 210, 0.15);
}

.submit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.submit-icon i {
    font-size: 1.8rem;
    color: white;
}

.submit-card h3 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.submit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.submit-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(138, 99, 210, 0.05), rgba(255, 154, 158, 0.05));
    border-radius: 16px;
}

.submit-cta p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Join Section */
.join-content {
    max-width: 1200px;
    margin: 0 auto;
}

.positions-section {
    margin-bottom: 5rem;
}

.positions-section h2 {
    text-align: center;
    color: var(--primary-purple);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.position-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.position-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.position-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

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

.position-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.position-requirements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.position-requirements span {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.board-positions-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.board-positions-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.board-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.board-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.board-list {
    list-style: none;
    margin-bottom: 2rem;
}

.board-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}


/* Board Application Info */
.board-application-info {
    margin-top: 3rem;
    text-align: center;
}

.board-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.board-contact-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .board-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .board-contact-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .primary-contact-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-details-secondary {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .social-platforms {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-platform-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .platform-content h4,
    .platform-content p,
    .platform-content span {
        text-align: center;
    }
}


.board-list li i {
    color: var(--primary-blue);
    width: 20px;
}

.board-status {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 500;
}

.board-status i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

/* Contact Section Styles */
.contact-overview {
    margin-bottom: 4rem;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    color: var(--primary-purple);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.primary-contact-section {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.primary-contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon.email {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
}

.method-icon.phone {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-info h3 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.method-info .contact-link {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
}

.method-info .contact-link:hover {
    text-decoration: underline;
}

.method-info p {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.95rem;
    margin: 0;
}

.contact-details-secondary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(177, 156, 217, 0.2);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
}

.detail-item i {
    color: var(--primary-purple);
    font-size: 1.1rem;
}

.detail-item strong {
    color: var(--primary-purple);
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
}

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

.contact-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-detail-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-detail-card h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-detail-card p {
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary-purple);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.location-text,
.response-text {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-note {
    margin-top: 3rem;
}

.info-note-card {
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(177, 156, 217, 0.2);
}

.note-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.note-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-note-card h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-note-card ul {
    list-style: none;
    padding: 0;
}

.info-note-card li {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-purple);
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.info-note-card li strong {
    color: var(--primary-purple);
}

.social-media-section {
    margin-bottom: 4rem;
    text-align: center;
}

.social-media-section h2 {
    color: var(--primary-purple);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.social-platform-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-platform-card.instagram .platform-icon {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-platform-card.tiktok .platform-icon {
    background: linear-gradient(135deg, #ff0050, #000);
}

.social-platform-card.youtube .platform-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.platform-icon i {
    font-size: 1.8rem;
    color: white;
}

.platform-content h4 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    text-align: left;
}

.platform-content p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-align: left;
}

.platform-content span {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
    text-align: left;
}

.social-media-section p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 3rem;
}

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

.social-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-contact-card:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #ff0050, #000);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon i {
    font-size: 1.8rem;
    color: white;
}

.social-info h4 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.social-info p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.social-info span {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

.impact-section {
    margin-bottom: 4rem;
    text-align: center;
}

.impact-section h2 {
    color: var(--primary-purple);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.impact-section > p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 3rem;
}

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

.impact-stat {
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(177, 156, 217, 0.2);
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    color: white;
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.contact-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
}

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

.cta-buttons .btn-secondary:hover {
    background: transparent;
    color: white;
}

/* Forms */
.join-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .contact-details-grid,
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-header h2,
    .social-media-section h2,
    .impact-section h2 {
        font-size: 2rem;
    }
    
    .social-contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--light-purple);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(177, 156, 217, 0.1);
    background: white;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--light-purple);
    backdrop-filter: blur(10px);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* Newsletter Subscription Form */
.newsletter-container {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(93, 78, 140, 0.12);
    text-align: center;
}

.newsletter-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 1.25rem;
}

.newsletter-container .embeddable-buttondown-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.newsletter-container label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.newsletter-container input[type="email"] {
    width: 100%;
    max-width: 350px;
    padding: 0.85rem 1.25rem;
    border: 2px solid rgba(93, 78, 140, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-container input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(93, 78, 140, 0.15);
}

.newsletter-container input[type="submit"] {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #7B6BA8 100%);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-container input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 78, 140, 0.3);
}

.newsletter-container p {
    margin-top: 0.75rem;
}

.newsletter-container p a {
    font-size: 0.75rem;
    color: rgba(93, 78, 140, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.newsletter-container p a:hover {
    color: var(--primary-purple);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-purple);
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-purple);
    color: var(--text-light);
}

/* Homepage Impact Section */
.homepage-impact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E8E0F0 0%, #DED4EC 100%);
    margin: 4rem -2rem;
}

.homepage-impact-section .section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.homepage-impact-section .section-header h2 i {
    color: var(--primary-purple);
}

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

.homepage-impact-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .homepage-impact-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .homepage-impact-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .homepage-impact-grid-5 {
        grid-template-columns: 1fr;
    }
}

.impact-stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.impact-stat-card:hover {
    transform: translateY(-3px);
}

.impact-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.impact-stat-card .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
}

/* Homepage Blogs Carousel */
.homepage-blogs-section {
    padding: 5rem 0;
    background: var(--off-white);
    margin: 4rem -2rem;
}

.homepage-blogs-section .section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.homepage-blogs-section .section-header h2 i {
    color: var(--sage-green);
}

.infinite-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin: 1rem 0;
}

.infinite-carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: infiniteScroll 40s linear infinite;
    width: max-content;
}

.infinite-carousel-wrapper:hover .infinite-carousel-track {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes infiniteScrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.infinite-carousel-track.reverse {
    animation: infiniteScrollReverse 40s linear infinite;
}

.carousel-card {
    flex: 0 0 220px;
    width: 220px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(138, 99, 210, 0.2);
}

.carousel-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.carousel-card-content {
    padding: 0.75rem;
}

.carousel-card-content h4 {
    font-size: 0.85rem;
    color: #8a63d2;
    margin-bottom: 0.3rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-card-content p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.homepage-blog-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.homepage-blog-card:hover {
    transform: translateY(-5px);
}

.homepage-blog-card .blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.homepage-blog-card .blog-content {
    padding: 1.5rem;
}

.homepage-blog-card .blog-content h4 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.homepage-blog-card .blog-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.read-more-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(177, 156, 217, 0.4);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -1rem;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(177, 156, 217, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    font-size: 1rem;
}

.carousel-btn:hover {
    background: var(--primary-purple);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(177, 156, 217, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-purple);
    transform: scale(1.2);
}

.view-all-blogs {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 25px var(--shadow-medium);
        display: none;
        border-radius: 0 0 15px 15px;
        padding: 1rem 0;
        gap: 0;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(177, 156, 217, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-donate-btn {
        display: none;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        justify-content: flex-start;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: var(--light-purple);
        border-radius: 0;
        margin-top: 0;
        min-width: 100%;
        animation: none;
        z-index: 1001;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }

    .dropdown.active .dropdown-content {
        display: flex !important;
        animation: slideDown 0.3s ease;
    }

    .dropdown-content a {
        padding: 0.8rem 1rem;
        border: 1px solid rgba(177, 156, 217, 0.3);
        border-radius: 15px;
        color: var(--primary-purple);
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.7);
        text-align: center;
        flex: 1;
        min-width: 120px;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .dropdown-content a:last-child {
        border-bottom: 1px solid rgba(177, 156, 217, 0.3);
    }

    .dropdown-content a:hover {
        background: rgba(177, 156, 217, 0.3);
        color: var(--primary-purple);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .blogs-grid,
    .socials-grid {
        grid-template-columns: 1fr;
    }

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

    .about-grid,
    .mission-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .hero,
    .features-section {
        margin: 0 -1rem;
    }

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

    .board-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .homepage-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-slide {
        min-width: 280px;
        flex: 0 0 280px;
    }

    .carousel-nav {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero,
    .about-content,
    .join-form,
    .contact-form {
        padding: 2rem 1rem;
    }

    .features-section {
        padding: 3rem 1rem;
    }

    .feature-card,
    .benefit-item,
    .contact-item {
        padding: 1.5rem;
    }
}

.board-image {
    text-align: center;
}

.board-image .section-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Responsive: Carousel and Teams Section */
@media (max-width: 768px) {
    .infinite-carousel-wrapper {
        margin: 1rem -1rem;
        padding: 0 1rem;
    }

    .infinite-carousel-track {
        gap: 1rem;
        animation: infiniteScroll 30s linear infinite;
    }

    .carousel-card {
        flex: 0 0 180px;
        width: 180px;
        border-radius: 10px;
    }

    .carousel-card img {
        height: 100px;
    }

    .carousel-card-content {
        padding: 0.5rem;
    }

    .carousel-card-content h4 {
        font-size: 0.75rem;
    }

    .carousel-card-content p {
        font-size: 0.65rem;
    }

    .teams-section {
        padding: 2.5rem 0;
        margin: 2rem -1rem;
    }

    .teams-section > .container > h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .teams-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .team-category-card {
        padding: 1.5rem;
    }

    .team-header h3 {
        font-size: 1.2rem;
    }

    .team-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .role-item h4 {
        font-size: 0.9rem;
    }

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

    .homepage-blogs-section .section-header h2 {
        font-size: 1.5rem;
    }

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

    .team-members-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.75rem;
    }

    .team-member-card {
        padding: 0.5rem;
    }

    .member-placeholder,
    .member-photo {
        width: 50px;
        height: 50px;
    }

    .member-placeholder i {
        font-size: 1.2rem;
    }

    .member-name {
        font-size: 0.75rem;
    }

    .member-role {
        font-size: 0.6rem;
    }

    .role-section h4 {
        font-size: 0.9rem;
    }

    .hiring-section {
        padding: 0.75rem;
    }

    .hiring-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .carousel-card {
        flex: 0 0 150px;
        width: 150px;
    }

    .carousel-card img {
        height: 85px;
    }

    .carousel-card-content {
        padding: 0.4rem;
    }

    .carousel-card-content h4 {
        font-size: 0.7rem;
    }

    .carousel-card-content p {
        font-size: 0.6rem;
    }

    .teams-section > .container > h2 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .team-category-card {
        padding: 1.25rem;
    }

    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .coming-soon-badge {
        margin-left: 0;
    }
}

/* Decorative Art Elements */
.hero-art-accent {
    margin: 3rem auto 2rem;
    max-width: 500px;
}

.hero-decorative-art {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 16px;
    opacity: 0.9;
}

.decorative-art-section {
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.decorative-art-section.right-aligned {
    margin-left: auto;
    margin-right: 5%;
    text-align: right;
}

.decorative-art {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 20px;
    opacity: 0.85;
}

.decorative-art.left-art {
    border-radius: 20px;
}

.decorative-art.right-art {
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero-art-accent {
        max-width: 90%;
        margin: 2rem auto 1.5rem;
    }

    .hero-decorative-art {
        max-height: 200px;
    }

    .decorative-art-section {
        padding: 1rem;
        max-width: 90%;
    }

    .decorative-art-section.right-aligned {
        margin-right: auto;
        text-align: center;
    }

    .decorative-art {
        max-height: 250px;
    }
}
/* =====================================================
   CHILDREN'S BOOKS SECTION - Storybook Aesthetic
   ===================================================== */

.childrens-books-section {
    background: linear-gradient(180deg, #FDF8F3 0%, #F5EDE4 50%, #E8E0F0 100%);
}

/* Storybook Hero */
.storybook-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    overflow: hidden;
}

.storybook-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FDF8F3 0%, #F5EBE0 30%, #E8E0F0 70%, #F5EDE4 100%);
    z-index: 0;
}

.storybook-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L32 15 L30 12 L28 15 Z' fill='%237B68A6' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.storybook-decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.35;
    top: 0;
    bottom: 0;
    width: 55%;
    overflow: hidden;
}

.storybook-decoration.left {
    left: 0;
}

.storybook-decoration.right {
    right: 0;
}

.storybook-decoration.left .storybook-decor-img {
    object-position: right center;
}

.storybook-decoration.right .storybook-decor-img {
    object-position: left center;
}

.storybook-decor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Falling Leaves Animation */
.falling-leaves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.leaf {
    position: absolute;
    top: -50px;
    animation: falling linear infinite;
    filter: drop-shadow(0 2px 4px rgba(93, 155, 122, 0.4));
}

.leaf i {
    font-size: 1.5rem;
}

.leaf-1 { left: 5%; animation-duration: 5s; animation-delay: 0s; color: #4CAF50; }
.leaf-2 { left: 15%; animation-duration: 4s; animation-delay: 0.8s; color: #8BC34A; }
.leaf-3 { left: 25%; animation-duration: 6s; animation-delay: 0.4s; color: #2E7D32; }
.leaf-4 { left: 35%; animation-duration: 4.5s; animation-delay: 1.2s; color: #66BB6A; }
.leaf-5 { left: 45%; animation-duration: 5.5s; animation-delay: 0.2s; color: #43A047; }
.leaf-6 { left: 55%; animation-duration: 3.5s; animation-delay: 1.6s; color: #81C784; }
.leaf-7 { left: 65%; animation-duration: 6s; animation-delay: 1s; color: #388E3C; }
.leaf-8 { left: 75%; animation-duration: 4s; animation-delay: 0.6s; color: #A5D6A7; }
.leaf-9 { left: 85%; animation-duration: 5s; animation-delay: 1.4s; color: #4CAF50; }
.leaf-10 { left: 92%; animation-duration: 4.5s; animation-delay: 0.3s; color: #69F0AE; }
.leaf-11 { left: 10%; animation-duration: 6.5s; animation-delay: 2s; color: #2E7D32; }
.leaf-12 { left: 80%; animation-duration: 5.5s; animation-delay: 2.4s; color: #76FF03; }

@keyframes falling {
    0% {
        top: -50px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(30px) rotate(180deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        transform: translateX(-20px) rotate(360deg);
        opacity: 0;
    }
}

.storybook-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.storybook-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #5D4E8C;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.storybook-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #6B5B7A;
    line-height: 1.8;
    font-weight: 400;
}

/* Featured Book Section */
.featured-book-section {
    padding: 100px 0;
}

.featured-book-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(123, 104, 166, 0.12);
    align-items: center;
}

.featured-book-slideshow {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #F5EDE4;
    min-height: 350px;
}

.featured-book-slideshow .slideshow-container {
    height: 350px;
}

.featured-book-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.featured-book-slideshow .slide.active {
    opacity: 1;
}

.featured-book-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #F5EDE4;
}

.featured-book-content {
    padding: 20px;
}

.featured-book-badge {
    display: inline-block;
    background: linear-gradient(135deg, #9B8BC4 0%, #7B68A6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.featured-book-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #5D4E8C;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-book-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #6B5B7A;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-book-status {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7B68A6;
    font-size: 1rem;
    padding: 15px 20px;
    background: #F5EDE4;
    border-radius: 15px;
}

.featured-book-status i {
    font-size: 1.2rem;
}

/* Coming Soon Books Section */
.coming-soon-books-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F5EDE4 0%, #E8E0F0 100%);
    position: relative;
}

.coming-soon-books-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #FDF8F3 0%, transparent 100%);
}

.coming-books-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

/* Upcoming Book Card - Matching Featured Book Style */
.upcoming-book-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(123, 104, 166, 0.1);
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upcoming-book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(123, 104, 166, 0.15);
}

.upcoming-book-visual {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
}

.book-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.book-cover-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

.upcoming-book-content {
    padding: 10px 0;
}

.upcoming-book-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD1DC 0%, #E8B4D8 100%);
    color: #5D4E8C;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.upcoming-book-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5D4E8C;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.upcoming-book-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #6B5B7A;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.upcoming-book-credits {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #9B8BC4;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.upcoming-book-credits em {
    font-style: italic;
    opacity: 0.9;
}

.upcoming-book-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7B68A6;
    font-size: 0.95rem;
    padding: 12px 18px;
    background: #F5EDE4;
    border-radius: 12px;
    display: inline-flex;
}

.upcoming-book-status i {
    font-size: 1rem;
}

/* Unique gradients for each book */
.fire-gradient {
    background: linear-gradient(135deg, #FF9A56 0%, #FF6B6B 50%, #E85D75 100%);
}

.cloud-gradient {
    background: linear-gradient(135deg, #A8DADC 0%, #89C4E1 50%, #7B68A6 100%);
}

.forest-gradient {
    background: linear-gradient(135deg, #7CB69D 0%, #5D9B7A 50%, #4A8B5A 100%);
}

.star-gradient {
    background: linear-gradient(135deg, #9B8BC4 0%, #7B68A6 50%, #5D4E8C 100%);
}

.colors-gradient {
    background: linear-gradient(135deg, #FFD1DC 0%, #E8B4D8 30%, #9B8BC4 60%, #7CB69D 100%);
}

.coming-book-info {
    padding: 25px;
}

.coming-soon-tag {
    display: inline-block;
    background: linear-gradient(135deg, #FFD1DC 0%, #E8B4D8 100%);
    color: #5D4E8C;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.coming-book-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #5D4E8C;
    margin-bottom: 10px;
    line-height: 1.3;
}

.book-teaser {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #6B5B7A;
    line-height: 1.6;
    margin-bottom: 15px;
}

.book-credits {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #9B8BC4;
    line-height: 1.5;
    margin-bottom: 10px;
}

.book-credits em {
    font-style: italic;
    opacity: 0.9;
}

.book-release {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #7B68A6;
    font-weight: 600;
}

/* Books CTA */
.books-cta {
    text-align: center;
    margin-top: 60px;
}

.books-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7B68A6 0%, #5D4E8C 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(123, 104, 166, 0.3);
}

.books-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 104, 166, 0.4);
}

.books-cta-btn i {
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .storybook-decoration {
        width: 50%;
        opacity: 0.25;
    }

    .featured-book-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .upcoming-book-card {
        grid-template-columns: 220px 1fr;
        gap: 30px;
        padding: 30px;
    }

    .upcoming-book-visual {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .storybook-hero {
        min-height: 400px;
        padding: 80px 20px;
    }

    .storybook-decoration {
        display: none;
    }

    .storybook-title {
        font-size: 2.5rem;
    }

    .storybook-subtitle {
        font-size: 1.1rem;
    }

    .featured-book-section {
        padding: 60px 0;
    }

    .featured-book-card {
        padding: 30px;
        border-radius: 20px;
    }

    .featured-book-title {
        font-size: 1.8rem;
    }

    .coming-books-grid {
        gap: 30px;
    }

    .upcoming-book-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .upcoming-book-visual {
        height: 250px;
    }

    .upcoming-book-title {
        font-size: 1.5rem;
    }

    .coming-soon-books-section {
        padding: 60px 0;
    }

    .books-cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* No results message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results p {
    font-size: 1.2rem;
    color: #7B68A6;
}

/* Start a Chapter Section Background */
#start-chapter {
    position: relative;
    background: url('attached_assets/homepage_11.png') center center / cover no-repeat !important;
}

#start-chapter::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(250, 248, 245, 0.85) !important;
    z-index: 0 !important;
}

#start-chapter .chapter-bg-image {
    display: none;
}

#start-chapter > .container {
    position: relative;
    z-index: 1;
}

/* ================================ */
/* Short Films & Visual Stories Page */
/* ================================ */

/* Hero Section */
.shortfilms-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.shortfilms-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('attached_assets/shortfilms_3.png') center center / cover no-repeat;
    z-index: 0;
}

.shortfilms-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 60, 115, 0.85) 0%, rgba(93, 78, 140, 0.8) 50%, rgba(123, 104, 166, 0.75) 100%);
}

.shortfilms-hero .container {
    position: relative;
    z-index: 1;
}

.shortfilms-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.shortfilms-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.shortfilms-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.shortfilms-hero-buttons .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.shortfilms-hero-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-3px);
}

/* Watch Our Visual Stories Section */
.shortfilms-watch-section {
    padding: 80px 0;
    background: var(--off-white);
}

.shortfilms-watch-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shortfilms-watch-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.shortfilms-watch-section .section-header h2 i {
    margin-right: 0.5rem;
}

.platform-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

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

.platform-card .platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.instagram-card .platform-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.instagram-card:hover {
    border-color: #dc2743;
}

.tiktok-card .platform-icon {
    background: #000000;
    color: white;
}

.tiktok-card:hover {
    border-color: #000000;
}

.youtube-card .platform-icon {
    background: #FF0000;
    color: white;
}

.youtube-card:hover {
    border-color: #FF0000;
}

.platform-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.platform-card p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

/* FilmPsych Animation Studios Section */
.shortfilms-studio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8E0F0 0%, #D8CCE8 100%);
}

.studio-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.studio-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
}

.studio-text h2 i {
    margin-right: 0.5rem;
    color: var(--primary-purple);
}

.studio-text p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.studio-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(93, 78, 140, 0.25);
}

/* Upcoming Short Films Section */
.shortfilms-upcoming-section {
    padding: 80px 0;
    background: var(--off-white);
}

.shortfilms-upcoming-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shortfilms-upcoming-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.shortfilms-upcoming-section .section-header h2 i {
    margin-right: 0.5rem;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.upcoming-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.upcoming-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upcoming-image.placeholder {
    background: linear-gradient(135deg, #9B8BC4 0%, #7B68A6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.upcoming-image.placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-purple);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.upcoming-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 1rem 1rem 0.5rem;
}

.upcoming-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .platform-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .studio-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .upcoming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shortfilms-hero-title {
        font-size: 2.5rem;
    }
    
    .shortfilms-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .platform-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .upcoming-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ================================ */
/* Writing Pages (Fiction, Memoirs, Poetry) */
/* ================================ */

/* Hero Section */
.writing-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.writing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.writing-hero-bg.fiction-bg {
    background: linear-gradient(135deg, rgba(123, 104, 166, 0.9) 0%, rgba(155, 139, 196, 0.85) 50%, rgba(180, 165, 210, 0.8) 100%);
}

.writing-hero-bg.memoirs-bg {
    background: linear-gradient(135deg, rgba(93, 78, 140, 0.9) 0%, rgba(123, 104, 166, 0.85) 50%, rgba(155, 139, 196, 0.8) 100%);
}

.writing-hero-bg.poetry-bg {
    background: linear-gradient(135deg, rgba(75, 60, 115, 0.9) 0%, rgba(93, 78, 140, 0.85) 50%, rgba(123, 104, 166, 0.8) 100%);
}

.writing-hero .container {
    position: relative;
    z-index: 1;
}

.writing-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.writing-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.writing-hero-btn {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.writing-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.writing-hero-btn i {
    margin-right: 0.5rem;
}

/* Writing Grid Section */
.writing-grid-section {
    padding: 80px 0;
    background: var(--off-white);
}

.writing-grid-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.writing-grid-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-purple);
}

.writing-grid-section .section-header h2 i {
    margin-right: 0.5rem;
}

.writing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.writing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 104, 166, 0.1);
}

.writing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(123, 104, 166, 0.3);
}

.writing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.writing-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.writing-meta i {
    margin-right: 0.3rem;
    color: var(--primary-purple);
}

.writing-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.writing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.writing-tag {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.writing-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.writing-read-more:hover {
    color: var(--deep-purple);
}

.writing-read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.writing-read-more:hover i {
    transform: translateX(5px);
}

/* Submit Section */
.writing-submit-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8E0F0 0%, #DED4EC 100%);
    text-align: center;
}

.writing-submit-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.writing-submit-section h2 i {
    margin-right: 0.5rem;
    color: var(--primary-purple);
}

.submit-intro {
    font-size: 1.15rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.submit-guidelines {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
}

.submit-guidelines li {
    background: white;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    color: var(--text-dark);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.submit-guidelines li i {
    color: var(--primary-purple);
    margin-right: 0.75rem;
}

.submit-btn {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(123, 104, 166, 0.4);
}

.submit-btn:hover {
    background: var(--deep-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 78, 140, 0.5);
}

.submit-btn i {
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .writing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .writing-hero-title {
        font-size: 2.5rem;
    }
    
    .writing-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .writing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .writing-submit-section h2 {
        font-size: 2rem;
    }
}

/* ================================ */
/* Research Publications Page */
/* ================================ */

/* Research Hero */
.research-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.research-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(93, 78, 140, 0.95) 0%, rgba(123, 104, 166, 0.9) 50%, rgba(155, 139, 196, 0.85) 100%);
}

.research-hero .container {
    position: relative;
    z-index: 1;
}

.research-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.research-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.research-hero-btn {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.research-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.research-hero-btn i {
    margin-right: 0.5rem;
}

/* Research Program Section */
.research-program-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4B3C73 0%, #5D4E8C 50%, #6B5A9E 100%);
}

.research-program-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #FFD1DC;
    text-align: center;
}

.research-program-section .section-header h2 i {
    margin-right: 0.5rem;
}

.program-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.program-description {
    font-size: 1.15rem;
    color: #FFE4EC;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.program-apply-btn {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(123, 104, 166, 0.4);
    margin-bottom: 1.5rem;
}

.program-apply-btn:hover {
    background: var(--deep-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 78, 140, 0.5);
}

.program-apply-btn i {
    margin-right: 0.5rem;
}

.program-note {
    font-size: 0.95rem;
    color: #5D4E8C;
    font-style: italic;
    background: #FFE4EC;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
}

.program-note i {
    margin-right: 0.5rem;
    color: #7B68A6;
}

/* Partner Journals Section */
.research-partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8E0F0 0%, #DED4EC 100%);
}

.research-partners-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-purple);
    text-align: center;
}

.research-partners-section .section-header h2 i {
    margin-right: 0.5rem;
    color: var(--primary-purple);
}

.partner-logos-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.partner-logo-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    max-width: 280px;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-purple);
}

.partner-logo-card img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.partner-logo-card span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.partner-cta {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.partner-cta a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.partner-cta a:hover {
    border-bottom-color: var(--primary-purple);
}

/* Research Standards Section */
.research-standards-section {
    padding: 80px 0;
    background: var(--off-white);
}

.research-standards-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-purple);
    text-align: center;
}

.research-standards-section .section-header h2 i {
    margin-right: 0.5rem;
}

.standards-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.standards-list li {
    background: white;
    padding: 1.25rem 1.75rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    color: var(--text-dark);
    font-size: 1.05rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-purple);
}

.standards-list li i {
    color: var(--primary-purple);
    margin-right: 1rem;
}

/* Collaborate Section */
.research-collaborate-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(93, 78, 140, 0.95) 0%, rgba(123, 104, 166, 0.9) 100%);
    text-align: center;
}

.research-collaborate-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
}

.research-collaborate-section .section-header h2 i {
    margin-right: 0.5rem;
}

.collaborate-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.collaborate-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.collaborate-btn i {
    margin-right: 0.5rem;
}

.collaborate-btn.mentor-btn {
    background: white;
    color: var(--primary-purple);
}

.collaborate-btn.mentor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.collaborate-btn.partner-btn {
    background: #FFE4EC;
    color: #5D4E8C;
    border: 2px solid rgba(255, 209, 220, 0.8);
}

.collaborate-btn.partner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .research-hero-title {
        font-size: 2.5rem;
    }
    
    .research-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .partner-logos-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .collaborate-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .collaborate-btn {
        width: 100%;
        max-width: 350px;
    }
}

/* ================================ */
/* Programs Main Page Hero */
/* ================================ */

.programs-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.programs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('attached_assets/programs_hero.png') center center / cover no-repeat;
    opacity: 0.63;
    z-index: 0;
}

.programs-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 78, 140, 0.45) 0%, rgba(123, 104, 166, 0.4) 50%, rgba(155, 139, 196, 0.35) 100%);
    z-index: 1;
}

.programs-hero .container {
    position: relative;
    z-index: 2;
}

.programs-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.programs-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .programs-hero-title {
        font-size: 2.5rem;
    }
    
    .programs-hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ================================ */
/* Internship Page Styles */
/* ================================ */

.internship-page {
    padding: 0;
}

/* Internship Hero */
.internship-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.internship-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5D4E8C 0%, #4A3D73 50%, #3D3260 100%);
    z-index: 0;
}

.internship-hero .container {
    position: relative;
    z-index: 2;
}

.internship-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.internship-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Reflection Section */
.internship-reflection-section {
    padding: 80px 0;
    background: var(--off-white);
}

.internship-reflection-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-purple);
    text-align: center;
}

.internship-reflection-section .section-header h2 i {
    margin-right: 0.5rem;
}

.reflection-dates {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
    font-style: italic;
}

.reflection-content {
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
}

.reflection-content p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.program-highlight {
    font-weight: 700;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

.program-highlight.editorial {
    color: #7B68A6;
    background: rgba(123, 104, 166, 0.15);
}

.program-highlight.visual {
    color: #E91E63;
    background: rgba(233, 30, 99, 0.1);
}

/* Outcomes Section */
.outcomes-section {
    margin-top: 3rem;
}

.outcomes-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 1rem;
}

.outcomes-section h3 i {
    margin-right: 0.5rem;
    color: #D4AF37;
}

.outcomes-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.outcomes-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Flip Card Styles */
.outcome-flip-card {
    width: 220px;
    height: 220px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 50%;
}

.outcome-flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.flip-card-front {
    background: white;
    border: 3px solid #D4AF37;
    position: relative;
    overflow: hidden;
}

.flip-card-front img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.flip-card-front .outcome-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.flip-card-front h4 {
    font-size: 0.9rem;
    color: #F5D77A;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.flip-card-back {
    background: linear-gradient(135deg, #7B68A6 0%, #5D4E8C 100%);
    transform: rotateY(180deg);
}

.flip-card-back p {
    color: white;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.5;
}

.outcomes-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 2rem;
}

/* Intern Work Section */
.intern-work-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8E0F0 0%, #DED4EC 100%);
}

.intern-work-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-purple);
    text-align: center;
}

.intern-work-section .section-header h2 i {
    margin-right: 0.5rem;
    color: var(--primary-purple);
}

.intern-work-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Intern Collage - No Borders, Images Touching */
.intern-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.intern-collage img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.intern-collage img:hover {
    transform: scale(1.05);
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .outcomes-grid {
        gap: 1.5rem;
    }
    
    .outcome-flip-card {
        width: 180px;
        height: 180px;
    }
    
    .intern-collage {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .internship-hero-title {
        font-size: 2.5rem;
    }
    
    .internship-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .outcomes-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .outcome-flip-card {
        width: 200px;
        height: 200px;
    }
    
    .intern-collage {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .intern-collage {
        grid-template-columns: 1fr;
    }
    
    .intern-collage img {
        height: 180px;
    }
}

/* Animation Fellowship Section */
.animation-fellowship-section {
    padding: 80px 0;
    background: var(--off-white);
}

.animation-fellowship-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.animation-fellowship-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-purple);
    display: inline-block;
}

.animation-fellowship-section .section-header h2 i {
    margin-right: 0.5rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 1rem;
    vertical-align: middle;
}

.fellowship-content {
    max-width: 900px;
    margin: 0 auto;
}

.fellowship-content > p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2.5rem;
}

.eligibility-section,
.style-note-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.eligibility-section h3,
.style-note-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.eligibility-section h3 i,
.style-note-section h3 i {
    margin-right: 0.5rem;
    color: var(--primary-purple);
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(123, 104, 166, 0.1);
}

.eligibility-list li:last-child {
    border-bottom: none;
}

.eligibility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: 700;
}

.style-note-section p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

/* Animation Examples - No borders, touching */
.animation-examples {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    margin: 2rem 0;
}

.animation-examples img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.animation-examples img:hover {
    transform: scale(1.05);
    z-index: 1;
}

.development-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(123, 104, 166, 0.15) 0%, rgba(93, 78, 140, 0.1) 100%);
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto;
}

.development-note .dev-icon {
    font-size: 1.5rem;
}

.development-note span:last-child {
    font-size: 1rem;
    color: var(--deep-purple);
    font-weight: 600;
}

/* What Interns Gain Section */
.interns-gain-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #5D4E8C 0%, #4A3D73 100%);
}

.interns-gain-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #FFFFFF !important;
    text-align: center;
}

.interns-gain-section .section-header h2 i {
    margin-right: 0.5rem;
    color: #D4AF37;
}

.gain-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 700px;
}

.gain-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.gain-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.gain-list li i {
    color: #FFD1DC;
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .animation-examples {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .animation-examples {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .animation-examples img {
        height: 150px;
    }
    
    .coming-soon-badge {
        display: block;
        margin: 1rem auto 0;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .animation-examples {
        grid-template-columns: 1fr;
    }
    
    .gain-list li {
        font-size: 1rem;
    }
}

/* Research Mentorship - Images with Pink Border */
.mentorship-content-with-images {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
}

.mentorship-image-left,
.mentorship-image-right {
    flex: 0 0 320px;
}

.mentorship-image-left img,
.mentorship-image-right img {
    width: 100%;
    height: auto;
    border: 4px solid #FFD1DC;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mentorship-content-with-images .program-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1200px) {
    .mentorship-content-with-images {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mentorship-image-left,
    .mentorship-image-right {
        flex: 0 0 280px;
    }
    
    .mentorship-content-with-images .program-content {
        flex: 1 1 100%;
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .mentorship-content-with-images {
        flex-direction: column;
    }
    
    .mentorship-image-left,
    .mentorship-image-right {
        flex: 1 1 100%;
        max-width: 400px;
    }
    
    .mentorship-content-with-images .program-content {
        order: 0;
    }
}

/* ================================ */
/* SEL Programs Page Styles */
/* ================================ */

.sel-programs-page {
    padding: 0;
}

/* SEL Hero */
.sel-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.sel-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FEF3E8 30%, #F5EDE4 60%, #EDE5DC 100%);
    z-index: 0;
}

.sel-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 209, 220, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(232, 224, 240, 0.4) 0%, transparent 50%),
                      radial-gradient(circle at 50% 50%, rgba(255, 228, 196, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.sel-hero .container {
    position: relative;
    z-index: 2;
}

.sel-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--deep-purple) !important;
    margin-bottom: 1.5rem;
}

.sel-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* SEL Focus Section */
.sel-focus-section {
    padding: 80px 0;
    background: var(--off-white);
}

.sel-focus-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.sel-focus-text {
    flex: 1;
}

.sel-focus-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.sel-focus-text h2 i {
    margin-right: 0.5rem;
    color: #E91E63;
}

.sel-focus-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* SEL Full-Width Slideshow */
.sel-slideshow-section {
    width: 100%;
}

.sel-slideshow-fullwidth {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sel-slide {
    display: none;
    width: 100%;
}

.sel-slide.active {
    display: block;
}

.sel-slide img {
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    object-fit: cover;
    display: block;
}

.sel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--deep-purple);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sel-prev-arrow {
    left: 30px;
}

.sel-next-arrow {
    right: 30px;
}

.sel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.sel-dots-fullwidth {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.sel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.sel-dot.active {
    background: white;
    transform: scale(1.2);
}

/* What We Focus On - Centered below slideshow */
.sel-focus-text-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sel-focus-text-centered h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.sel-focus-text-centered h2 i {
    margin-right: 0.5rem;
    color: #E91E63;
}

.sel-focus-text-centered p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .sel-hero-title {
        font-size: 2.2rem;
    }
    
    .sel-slide img {
        height: 50vh;
        min-height: 350px;
    }
    
    .sel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .sel-prev-arrow {
        left: 15px;
    }
    
    .sel-next-arrow {
        right: 15px;
    }
}

/* Previous Programs - Heart Flip Cards */
.sel-previous-programs {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4EC 100%);
}

.sel-previous-programs .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 3rem;
}

.sel-previous-programs .section-header h2 i {
    margin-right: 0.5rem;
    color: #E91E63;
}

.heart-cards-grid {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.heart-flip-card {
    width: 320px;
    height: 300px;
    perspective: 1000px;
}

.heart-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

.heart-flip-card:hover .heart-flip-inner {
    transform: rotateY(180deg);
}

.heart-front, .heart-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-back {
    transform: rotateY(180deg);
}

.heart-shape {
    width: 300px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem 2rem;
    box-sizing: border-box;
    -webkit-mask-image: url('attached_assets/heart_shape.png');
    mask-image: url('attached_assets/heart_shape.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.heart-front-style {
    background: #FFD1DC;
}

.heart-back-style {
    background: #E91E63;
}

.heart-shape h3 {
    color: var(--deep-purple);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    padding: 0 1rem;
}

.heart-shape p {
    color: white;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding: 0 1rem;
}

.heart-examples {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

@media (max-width: 992px) {
    .heart-cards-grid {
        gap: 2rem;
    }
    
    .heart-flip-card {
        width: 280px;
        height: 260px;
    }
    
    .heart-shape {
        width: 260px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .heart-flip-card {
        width: 260px;
        height: 240px;
    }
    
    .heart-shape {
        width: 240px;
        height: 220px;
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .heart-shape h3 {
        font-size: 1.1rem;
    }
    
    .heart-shape p {
        font-size: 0.8rem;
    }
}

/* Who We Serve Section */
.sel-who-we-serve {
    padding: 80px 0;
    background: var(--warm-white);
}

.who-we-serve-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.who-we-serve-text {
    flex: 1;
}

.who-we-serve-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
}

.who-we-serve-text h2 i {
    margin-right: 0.75rem;
    color: var(--primary-purple);
}

.who-we-serve-text > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.serve-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.serve-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #444;
    border-bottom: 1px solid rgba(123, 104, 166, 0.1);
}

.serve-list li:last-child {
    border-bottom: none;
}

.serve-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-pink) 0%, #F5E6EA 100%);
    border-radius: 50%;
    color: var(--primary-purple);
    font-size: 1rem;
}

.who-we-serve-image {
    flex: 0 0 350px;
}

.who-we-serve-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(93, 78, 140, 0.15);
}

@media (max-width: 992px) {
    .who-we-serve-content {
        flex-direction: column;
        text-align: center;
    }
    
    .who-we-serve-image {
        flex: 0 0 auto;
        max-width: 300px;
    }
    
    .serve-list li {
        justify-content: center;
    }
}

/* Bring FilmPsych to Your Community Section */
.sel-partner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-purple) 0%, #E0D6F0 100%);
}

.partner-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.partner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
}

.partner-content h2 i {
    margin-right: 0.75rem;
    color: var(--primary-purple);
}

.partner-content > p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.partner-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-btn.primary {
    background: var(--primary-purple);
    color: white;
}

.partner-btn.primary:hover {
    background: var(--deep-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(93, 78, 140, 0.3);
}

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

.partner-btn.secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

/* SEL Donate Section */
.sel-donate-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE4EC 0%, var(--light-pink) 100%);
}

.sel-donate-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sel-donate-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
}

.sel-donate-text h2 i {
    margin-right: 0.75rem;
    color: #E91E63;
}

.sel-donate-text > p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sel-donate-section .donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #E91E63 0%, #D81B60 100%);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sel-donate-section .donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.35);
}

@media (max-width: 768px) {
    .sel-who-we-serve,
    .sel-partner-section,
    .sel-donate-section {
        padding: 60px 0;
    }
    
    .who-we-serve-text h2,
    .partner-content h2,
    .sel-donate-text h2 {
        font-size: 1.8rem;
    }
}

/* Literacy Program & Card-Making Program Pages */
.literacy-program-page,
.card-making-page {
    background: var(--warm-white);
}

/* Simple Hero Section for Programs */
.program-simple-hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.literacy-hero {
    background: linear-gradient(135deg, #8B7BB5 0%, #A394C9 50%, #C4B8DB 100%);
}

.cardmaking-hero {
    background: linear-gradient(135deg, #E8A4B8 0%, #F5C6D3 50%, #FFD1DC 100%);
}

.program-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #FFFFFF !important;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.program-hero-title i {
    margin-right: 0.75rem;
}

.program-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 80px 0;
    background: var(--warm-white);
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.coming-soon-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
}

.coming-soon-content > p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.coming-soon-note {
    font-style: italic;
    color: var(--primary-purple);
    background: var(--light-purple);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-purple);
}

/* Help Reality Section */
.help-reality-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-purple) 0%, #E0D6F0 100%);
}

.cardmaking-help {
    background: linear-gradient(135deg, #FFE4EC 0%, #FFF0F5 100%);
}

.help-reality-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 1rem;
}

.help-reality-section h2 i {
    margin-right: 0.75rem;
    color: var(--primary-purple);
}

.help-intro {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.help-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.help-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(93, 78, 140, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(93, 78, 140, 0.2);
}

.help-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-purple);
}

.help-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.help-card > p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.help-btn.donate-style {
    background: linear-gradient(135deg, #E91E63 0%, #D81B60 100%);
    color: white;
}

.help-btn.donate-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.help-btn.volunteer-style {
    background: linear-gradient(135deg, #4CAF50 0%, #43A047 100%);
    color: white;
}

.help-btn.volunteer-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.help-btn.partner-style {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
    color: white;
}

.help-btn.partner-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(93, 78, 140, 0.3);
}

@media (max-width: 992px) {
    .help-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .program-hero-title {
        font-size: 2.2rem;
    }
    
    .program-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    
    .help-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .help-reality-section h2 {
        font-size: 1.8rem;
    }
}

/* Programs Main Page Grid */
.programs-main-page {
    background: var(--warm-white);
}

.programs-grid-section {
    padding: 80px 0;
    background: var(--warm-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(93, 78, 140, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #FFD1DC 0%, #C4B8DB 50%, #9B8BC4 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(93, 78, 140, 0.15);
}

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

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

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

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(93, 78, 140, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-overlay span {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.program-card-content {
    padding: 1.75rem;
}

.program-timeframe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    color: var(--deep-purple);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--deep-purple);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.program-card-content > p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.program-tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.program-tracks span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.program-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-card-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(93, 78, 140, 0.3);
}

@media (max-width: 1100px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .program-card-content h3 {
        font-size: 1.2rem;
    }
    
    .programs-grid-section {
        padding: 60px 0;
    }
}

/* ================================================
   SUPPORT & GET INVOLVED PAGES - SHARED STYLES
   ================================================ */

/* Page Hero Styles */
.page-hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.breadcrumb-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #FFFFFF !important;
    margin-bottom: 1rem;
    position: relative;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.page-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--deep-purple);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Color Variants */
.hero-teal { background: linear-gradient(135deg, #4ECDC4 0%, #2C9E95 100%); }

/* Get Involved Hero with Background Image */
.hero-get-involved {
    background: linear-gradient(135deg, rgba(93, 63, 150, 0.85) 0%, rgba(177, 156, 217, 0.8) 50%, rgba(100, 149, 237, 0.85) 100%),
                url('attached_assets/image_1769326609394.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-get-involved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 20, 60, 0.3);
    pointer-events: none;
}

.hero-get-involved .container {
    position: relative;
    z-index: 2;
}

/* Shining Star Animations */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: starShine 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
}

.star::before,
.star::after {
    content: '';
    position: absolute;
    background: white;
}

.star::before {
    width: 100%;
    height: 300%;
    top: -100%;
    left: 0;
    border-radius: 50%;
}

.star::after {
    width: 300%;
    height: 100%;
    left: -100%;
    top: 0;
    border-radius: 50%;
}

.star-1 { width: 6px; height: 6px; top: 15%; left: 10%; animation-delay: 0s; }
.star-2 { width: 4px; height: 4px; top: 25%; left: 25%; animation-delay: 0.3s; }
.star-3 { width: 8px; height: 8px; top: 10%; left: 45%; animation-delay: 0.6s; }
.star-4 { width: 5px; height: 5px; top: 30%; left: 70%; animation-delay: 0.9s; }
.star-5 { width: 7px; height: 7px; top: 20%; left: 85%; animation-delay: 1.2s; }
.star-6 { width: 4px; height: 4px; top: 40%; left: 15%; animation-delay: 1.5s; }
.star-7 { width: 6px; height: 6px; top: 35%; left: 55%; animation-delay: 1.8s; }
.star-8 { width: 5px; height: 5px; top: 45%; left: 90%; animation-delay: 0.4s; }

@keyframes starShine {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Floating Flowers Animation for About Hero */
.floating-flowers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.flower {
    position: absolute;
    animation: flowerFloat 6s ease-in-out infinite, flowerSpin 2s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
}

.flower i {
    font-size: 18px;
}

.flower-1 { left: 5%; animation-delay: 0s; animation-duration: 5s, 1.5s; }
.flower-2 { left: 15%; animation-delay: 0.8s; animation-duration: 6s, 2s; }
.flower-3 { left: 25%; animation-delay: 1.6s; animation-duration: 5.5s, 1.8s; }
.flower-4 { left: 35%; animation-delay: 0.4s; animation-duration: 6.5s, 2.2s; }
.flower-5 { left: 50%; animation-delay: 1.2s; animation-duration: 7s, 1.6s; }
.flower-6 { left: 60%; animation-delay: 2s; animation-duration: 5s, 2s; }
.flower-7 { left: 70%; animation-delay: 0.2s; animation-duration: 6s, 2.4s; }
.flower-8 { left: 80%; animation-delay: 1s; animation-duration: 5.5s, 1.7s; }
.flower-9 { left: 90%; animation-delay: 1.8s; animation-duration: 5s, 1.9s; }
.flower-10 { left: 95%; animation-delay: 0.6s; animation-duration: 7s, 2.2s; }

.flower-1 i { font-size: 16px; color: #FF69B4; }
.flower-2 i { font-size: 22px; color: #FFB6C1; }
.flower-3 i { font-size: 14px; color: #FFFFFF; }
.flower-4 i { font-size: 20px; color: #FF1493; }
.flower-5 i { font-size: 18px; color: #FFC0CB; }
.flower-6 i { font-size: 24px; color: #FF69B4; }
.flower-7 i { font-size: 15px; color: #FFFFFF; }
.flower-8 i { font-size: 12px; color: #FFB6C1; }
.flower-9 i { font-size: 20px; color: #FF1493; }
.flower-10 i { font-size: 16px; color: #FFC0CB; }

@keyframes flowerFloat {
    0% {
        top: -5%;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 105%;
        opacity: 0;
        transform: translateX(50px) rotate(360deg);
    }
}

@keyframes flowerSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Popping Hearts Animation for Programs Hero */
.popping-hearts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.pop-heart {
    position: absolute;
    animation: heartPop 1.5s ease-out infinite;
    opacity: 0;
}

.pop-heart i {
    font-size: 28px;
    color: rgba(255, 105, 140, 1);
    filter: drop-shadow(0 0 6px rgba(255, 105, 140, 0.7));
}

.heart-1 { left: 8%; bottom: 10%; animation-delay: 0s; }
.heart-2 { left: 18%; bottom: 15%; animation-delay: 0.2s; }
.heart-3 { left: 28%; bottom: 8%; animation-delay: 0.4s; }
.heart-4 { left: 38%; bottom: 20%; animation-delay: 0.6s; }
.heart-5 { left: 48%; bottom: 12%; animation-delay: 0.1s; }
.heart-6 { left: 58%; bottom: 18%; animation-delay: 0.3s; }
.heart-7 { left: 68%; bottom: 10%; animation-delay: 0.5s; }
.heart-8 { left: 78%; bottom: 15%; animation-delay: 0.7s; }
.heart-9 { left: 88%; bottom: 8%; animation-delay: 0.25s; }
.heart-10 { left: 95%; bottom: 20%; animation-delay: 0.45s; }
.heart-11 { left: 5%; bottom: 25%; animation-delay: 0.8s; }
.heart-12 { left: 55%; bottom: 5%; animation-delay: 0.9s; }

.heart-1 i, .heart-4 i, .heart-7 i, .heart-10 i { font-size: 26px; color: rgba(255, 150, 180, 1); }
.heart-2 i, .heart-5 i, .heart-8 i, .heart-11 i { font-size: 32px; color: rgba(229, 115, 155, 1); }
.heart-3 i, .heart-6 i, .heart-9 i, .heart-12 i { font-size: 22px; color: rgba(255, 182, 193, 1); }

@keyframes heartPop {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.3);
    }
    20% {
        opacity: 1;
        transform: translateY(-20px) scale(1.2);
    }
    40% {
        transform: translateY(-40px) scale(1);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-70px) scale(1.1);
    }
    80% {
        opacity: 0.4;
        transform: translateY(-100px) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateY(-130px) scale(0.5);
    }
}

/* Golden Dancing Stars for Submit Page */
.golden-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.golden-star {
    position: absolute;
    animation: starDance 2s ease-in-out infinite, starGlow 1s ease-in-out infinite alternate;
}

.golden-star i {
    font-size: 24px;
    color: #FFD700;
    filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #FFA500);
}

.star-1 { left: 5%; top: 10%; animation-delay: 0s; }
.star-2 { left: 15%; top: 30%; animation-delay: 0.3s; }
.star-3 { left: 25%; top: 60%; animation-delay: 0.6s; }
.star-4 { left: 10%; top: 80%; animation-delay: 0.15s; }
.star-5 { left: 40%; top: 15%; animation-delay: 0.45s; }
.star-6 { left: 50%; top: 50%; animation-delay: 0.75s; }
.star-7 { left: 60%; top: 85%; animation-delay: 0.2s; }
.star-8 { left: 75%; top: 20%; animation-delay: 0.5s; }
.star-9 { left: 85%; top: 45%; animation-delay: 0.8s; }
.star-10 { left: 90%; top: 70%; animation-delay: 0.1s; }
.star-11 { left: 95%; top: 25%; animation-delay: 0.4s; }
.star-12 { left: 35%; top: 75%; animation-delay: 0.7s; }
.star-13 { left: 70%; top: 55%; animation-delay: 0.25s; }
.star-14 { left: 20%; top: 45%; animation-delay: 0.55s; }
.star-15 { left: 80%; top: 90%; animation-delay: 0.85s; }

.star-1 i, .star-5 i, .star-9 i, .star-13 i { font-size: 28px; }
.star-2 i, .star-6 i, .star-10 i, .star-14 i { font-size: 20px; }
.star-3 i, .star-7 i, .star-11 i, .star-15 i { font-size: 32px; }
.star-4 i, .star-8 i, .star-12 i { font-size: 18px; }

@keyframes starDance {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(0deg) scale(0.3);
    }
    15% {
        opacity: 1;
        transform: translateY(-10px) translateX(5px) rotate(45deg) scale(1.2);
    }
    30% {
        transform: translateY(5px) translateX(-8px) rotate(90deg) scale(1);
    }
    45% {
        transform: translateY(-15px) translateX(10px) rotate(135deg) scale(1.3);
    }
    60% {
        opacity: 1;
        transform: translateY(8px) translateX(-5px) rotate(180deg) scale(1.1);
    }
    75% {
        transform: translateY(-5px) translateX(8px) rotate(270deg) scale(0.9);
    }
    90% {
        opacity: 0.5;
        transform: translateY(10px) translateX(-3px) rotate(315deg) scale(0.7);
    }
    100% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(360deg) scale(0.3);
    }
}

@keyframes starGlow {
    0% {
        filter: drop-shadow(0 0 8px #FFD700) drop-shadow(0 0 15px #FFA500);
    }
    100% {
        filter: drop-shadow(0 0 15px #FFD700) drop-shadow(0 0 30px #FFA500) drop-shadow(0 0 45px #FFD700);
    }
}

/* ======================= */
/* CHAPTERS PAGE STYLES */
/* ======================= */

.chapters-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.chapters-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('attached_assets/homepage_11.png') center/cover no-repeat;
    opacity: 0.7;
    z-index: 0;
}

.chapters-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 40, 80, 0.85) 0%, rgba(75, 50, 120, 0.8) 50%, rgba(50, 60, 130, 0.85) 100%);
    z-index: 1;
}

.chapters-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.chapter-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: chapterSparkle 2s ease-in-out infinite;
}

.chapter-sparkle.sparkle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.chapter-sparkle.sparkle-2 { top: 25%; left: 85%; animation-delay: 0.4s; }
.chapter-sparkle.sparkle-3 { top: 60%; left: 20%; animation-delay: 0.8s; }
.chapter-sparkle.sparkle-4 { top: 40%; left: 75%; animation-delay: 1.2s; }
.chapter-sparkle.sparkle-5 { top: 70%; left: 90%; animation-delay: 0.6s; }
.chapter-sparkle.sparkle-6 { top: 80%; left: 5%; animation-delay: 1s; }

@keyframes chapterSparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.chapters-hero .container {
    position: relative;
    z-index: 3;
}

.chapters-breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.chapters-breadcrumb i {
    margin-right: 8px;
}

.chapters-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Materials Provided Section */
.chapters-materials-section {
    background: linear-gradient(135deg, rgba(42, 58, 112, 0.08) 0%, rgba(74, 58, 144, 0.08) 100%);
    border: 2px solid rgba(74, 58, 144, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px 0 50px;
}

.materials-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a3a90 0%, #6a5ab0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.materials-icon i {
    font-size: 1.8rem;
    color: white;
}

.chapters-materials-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #2a3a70;
    margin-bottom: 15px;
}

.chapters-materials-section p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.materials-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.material-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2a3a70 0%, #4a3a90 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.material-tag i {
    font-size: 0.85rem;
}

/* ======================= */
/* VOLUNTEER PAGE STYLES */
/* ======================= */

.volunteer-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.volunteer-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('attached_assets/image_1769328393899.png') center/cover no-repeat;
    opacity: 0.85;
    z-index: 0;
}

.volunteer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(180, 70, 90, 0.75) 0%, rgba(200, 100, 100, 0.7) 50%, rgba(180, 90, 70, 0.75) 100%);
    z-index: 1;
}

.volunteer-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.float-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    animation: floatUpDown 4s ease-in-out infinite;
}

.float-icon i {
    font-size: 1.2rem;
}

.float-icon.icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.float-icon.icon-2 { top: 30%; left: 85%; animation-delay: 0.5s; }
.float-icon.icon-3 { top: 60%; left: 15%; animation-delay: 1s; }
.float-icon.icon-4 { top: 70%; left: 80%; animation-delay: 1.5s; }
.float-icon.icon-5 { top: 40%; left: 50%; animation-delay: 0.8s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-15px); opacity: 0.8; }
}

.volunteer-hero .container {
    position: relative;
    z-index: 3;
}

.volunteer-breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.volunteer-breadcrumb i {
    margin-right: 8px;
}

.volunteer-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.volunteer-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Volunteer Content */
.volunteer-content {
    background: linear-gradient(180deg, #FFF5F3 0%, #FFF0ED 100%);
}

/* How to Volunteer Section */
.volunteer-how-section {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
}

.volunteer-how-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #E85D52;
    margin-bottom: 20px;
}

.volunteer-how-section h2 i {
    margin-right: 10px;
}

.volunteer-intro-text {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.volunteer-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.volunteer-step-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(232, 93, 82, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #FF6B8A;
}

.volunteer-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(232, 93, 82, 0.2);
}

.step-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FF6B8A 0%, #FF9A8B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.step-icon-wrap i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.15) 0%, rgba(255, 154, 139, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FF6B8A;
}

.volunteer-step-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 12px;
}

.volunteer-step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-form-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B8A 0%, #FF9A8B 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.step-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 138, 0.4);
}

.step-form-btn i {
    margin-right: 6px;
}

/* Volunteer Programs Section */
.volunteer-programs-section {
    margin-bottom: 60px;
}

.volunteer-programs-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #E85D52;
    text-align: center;
    margin-bottom: 40px;
}

.volunteer-programs-section h2 i {
    margin-right: 10px;
}

.volunteer-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.volunteer-program-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.volunteer-program-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.volunteer-program-card:hover .program-card-shine {
    left: 150%;
}

.program-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
    z-index: 5;
}

.program-card-header {
    padding: 30px 25px 20px;
    text-align: center;
}

.sel-card .program-card-header {
    background: linear-gradient(135deg, #9B8BB8 0%, #7B68A6 100%);
}

.literacy-card .program-card-header {
    background: linear-gradient(135deg, #6BB8A8 0%, #4A9A8A 100%);
}

.art-card .program-card-header {
    background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
}

.program-icon-bubble {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: bubblePulse 3s ease-in-out infinite;
}

@keyframes bubblePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.program-icon-bubble i {
    font-size: 1.8rem;
    color: white;
}

.program-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: white;
    margin: 0;
}

.program-card-body {
    padding: 25px;
}

.program-card-body > p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.good-for-section {
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.08) 0%, rgba(255, 154, 139, 0.08) 100%);
    border-radius: 12px;
    padding: 15px;
}

.good-for-label {
    font-weight: 600;
    color: #E85D52;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.good-for-label i {
    margin-right: 6px;
}

.good-for-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.good-for-section li {
    color: #666;
    font-size: 0.9rem;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.good-for-section li::before {
    content: "•";
    color: #FF6B8A;
    position: absolute;
    left: 5px;
}

/* Who Can Volunteer Section */
.who-can-volunteer-section {
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.1) 0%, rgba(255, 154, 139, 0.1) 100%);
    border: 2px solid rgba(255, 107, 138, 0.2);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    margin-bottom: 60px;
}

.who-can-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B8A 0%, #FF9A8B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.who-can-icon i {
    font-size: 2rem;
    color: white;
}

.who-can-volunteer-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #E85D52;
    margin-bottom: 15px;
}

.who-can-intro {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.who-can-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.who-can-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    color: #444;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.who-can-item i {
    color: #FF6B8A;
    font-size: 1rem;
}

/* Volunteer Benefits */
.volunteer-benefits-section h2 {
    color: #E85D52;
}

/* CTA Volunteer */
.cta-volunteer {
    background: linear-gradient(135deg, #FF6B8A 0%, #FF9A8B 50%, #FF8E72 100%);
}

.cta-volunteer .cta-btn {
    background: white;
    color: #FF6B8A;
}

.cta-volunteer .cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .volunteer-programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .volunteer-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteer-hero-title {
        font-size: 2.5rem;
    }
    
    .who-can-list {
        grid-template-columns: 1fr;
    }
    
    .who-can-volunteer-section {
        padding: 30px 20px;
    }
}

/* ======================= */
/* SUBMIT PAGE STYLES */
/* ======================= */

.submit-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #FFF8F0 0%, #FDF5F0 50%, #F8F0E8 100%);
    padding: 80px 20px;
    overflow: hidden;
}

/* Floating Gallery Images */
.submit-floating-gallery {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(218, 165, 32, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
    animation: floatGently 8s ease-in-out infinite;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Position images in an oval/circle around center */
.floating-img.img-1 { width: 140px; height: 180px; top: 5%; left: 3%; animation-delay: 0s; }
.floating-img.img-2 { width: 120px; height: 150px; top: 8%; left: 18%; animation-delay: 1s; }
.floating-img.img-3 { width: 160px; height: 200px; top: 3%; right: 18%; animation-delay: 0.5s; }
.floating-img.img-4 { width: 100px; height: 80px; top: 12%; right: 5%; animation-delay: 1.5s; }
.floating-img.img-5 { width: 90px; height: 100px; top: 35%; left: 2%; animation-delay: 2s; }
.floating-img.img-6 { width: 130px; height: 130px; top: 38%; right: 3%; animation-delay: 0.8s; }
.floating-img.img-7 { width: 110px; height: 140px; bottom: 30%; left: 4%; animation-delay: 1.2s; }
.floating-img.img-8 { width: 100px; height: 120px; bottom: 28%; right: 5%; animation-delay: 1.8s; }
.floating-img.img-9 { width: 150px; height: 180px; bottom: 8%; left: 5%; animation-delay: 0.3s; }
.floating-img.img-10 { width: 120px; height: 100px; bottom: 5%; left: 22%; animation-delay: 2.2s; }
.floating-img.img-11 { width: 130px; height: 160px; bottom: 6%; right: 18%; animation-delay: 0.7s; }
.floating-img.img-12 { width: 140px; height: 170px; bottom: 10%; right: 3%; animation-delay: 1.4s; }

@keyframes floatGently {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    50% { transform: translateY(-4px) rotate(-1deg); }
    75% { transform: translateY(-10px) rotate(0.5deg); }
}

/* Center Content */
.submit-center-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.submit-header {
    text-align: center;
    margin-bottom: 40px;
}

.submit-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #5D4037;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.submit-header p {
    font-size: 1.15rem;
    color: #6D5D53;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Main Submit Buttons */
.submit-buttons-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.submit-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.writing-btn {
    background: linear-gradient(135deg, #8B7355 0%, #A0826D 100%);
    color: white;
}

.writing-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 115, 85, 0.4);
}

.art-btn {
    background: linear-gradient(135deg, #9B8BB8 0%, #B8A8D0 100%);
    color: white;
}

.art-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(155, 139, 184, 0.4);
}

/* Whimsical Cards Container */
.submit-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Submit Contact CTA */
.submit-contact-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
}

.submit-contact-cta p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.submit-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #7B6BA8 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 78, 140, 0.25);
}

.submit-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 78, 140, 0.35);
}

/* Whimsical Cards */
.submit-whimsy-card {
    background: white;
    border-radius: 24px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.submit-whimsy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}

.card-poetry::before { background: linear-gradient(90deg, #E8D4E8 0%, #D8C4D8 100%); }
.card-memoirs::before { background: linear-gradient(90deg, #FFD4D4 0%, #FFC4C4 100%); }
.card-fiction::before { background: linear-gradient(90deg, #D4E8E8 0%, #C4D8D8 100%); }
.card-blog::before { background: linear-gradient(90deg, #E8E4D4 0%, #D8D4C4 100%); }
.card-academic::before { background: linear-gradient(90deg, #D4D8E8 0%, #C4C8D8 100%); }
.card-research::before { background: linear-gradient(90deg, #D8E8D4 0%, #C8D8C4 100%); }
.card-children::before { background: linear-gradient(90deg, #FFE8D4 0%, #FFD8C4 100%); }
.card-films::before { background: linear-gradient(90deg, #E4D4E8 0%, #D4C4D8 100%); }

.submit-whimsy-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.whimsy-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: iconBounce 3s ease-in-out infinite;
}

.card-poetry .whimsy-icon { background: linear-gradient(135deg, #E8D4E8 0%, #D8B4D8 100%); }
.card-memoirs .whimsy-icon { background: linear-gradient(135deg, #FFD4D4 0%, #FFB4B4 100%); }
.card-fiction .whimsy-icon { background: linear-gradient(135deg, #D4E8E8 0%, #B4D8D8 100%); }
.card-blog .whimsy-icon { background: linear-gradient(135deg, #E8E4D4 0%, #D8D4B4 100%); }
.card-academic .whimsy-icon { background: linear-gradient(135deg, #D4D8E8 0%, #B4C8D8 100%); }
.card-research .whimsy-icon { background: linear-gradient(135deg, #D8E8D4 0%, #B8D8B4 100%); }
.card-children .whimsy-icon { background: linear-gradient(135deg, #FFE8D4 0%, #FFD4B4 100%); }
.card-films .whimsy-icon { background: linear-gradient(135deg, #E4D4E8 0%, #D4B4D8 100%); }

.whimsy-icon i {
    font-size: 1.3rem;
    color: #5D4037;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.submit-whimsy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #4A3728;
    margin-bottom: 10px;
    line-height: 1.3;
}

.submit-whimsy-card p {
    font-size: 0.85rem;
    color: #7D6D63;
    line-height: 1.5;
    margin-bottom: 15px;
}

.whimsy-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #DAA520 0%, #F4C430 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.whimsy-submit:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
}

.whimsy-submit i {
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .floating-img { display: none; }
    .floating-img.img-1, .floating-img.img-3, .floating-img.img-9, .floating-img.img-11 { display: block; }
    .floating-img.img-1 { width: 100px; height: 120px; }
    .floating-img.img-3 { width: 110px; height: 140px; }
    .floating-img.img-9 { width: 100px; height: 120px; }
    .floating-img.img-11 { width: 90px; height: 110px; }
}

@media (max-width: 992px) {
    .submit-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-img { display: none; }
}

@media (max-width: 600px) {
    .submit-cards-container {
        grid-template-columns: 1fr;
    }
    
    .submit-header h1 {
        font-size: 2.2rem;
    }
    
    .submit-center-content {
        padding: 20px;
    }
    
    .submit-buttons-row {
        flex-direction: column;
        align-items: center;
    }
    
    .submit-main-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.chapters-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Chapters Content Area */
.chapters-content {
    background: linear-gradient(180deg, #f0f2f8 0%, #e8ecf5 100%);
}

/* Flip Cards Section */
.chapters-intro-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    padding-top: 20px;
}

.flip-card-container {
    perspective: 1000px;
}

.flip-card {
    width: 100%;
    height: 320px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 40, 80, 0.15);
}

.flip-card-front {
    background: linear-gradient(135deg, #2a3a70 0%, #4a3a90 50%, #3a4a8a 100%);
    color: white;
}

.flip-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.flip-icon i {
    font-size: 2rem;
    color: white;
}

.flip-card-front h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.flip-hint {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: auto;
}

.flip-hint i {
    margin-right: 5px;
    animation: rotateHint 2s ease-in-out infinite;
}

@keyframes rotateHint {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.flip-card-back {
    background: white;
    color: #333;
    transform: rotateY(180deg);
    text-align: left;
    justify-content: flex-start;
    padding-top: 35px;
    overflow-y: auto;
}

.flip-card-back p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.flip-note {
    font-style: italic;
    color: #5a4a8a;
    border-left: 3px solid #4a3a90;
    padding-left: 15px;
}

.flip-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.flip-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.flip-list li i {
    color: #4a3a90;
    margin-top: 3px;
}

/* Chapters Cards */
.chapters-cards .chapter-card {
    border-top: 4px solid #3a4a8a;
    transition: all 0.3s ease;
}

.chapters-cards .chapter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 40, 80, 0.2);
}

.card-icon.navy {
    background: linear-gradient(135deg, #2a3a70 0%, #4a3a90 100%);
    color: white;
}

/* Chapters Buttons */
.chapters-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.chapter-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.guide-btn {
    background: linear-gradient(135deg, #4a3a90 0%, #6a5ab0 100%);
    color: white;
}

.guide-btn:hover {
    background: linear-gradient(135deg, #5a4aa0 0%, #7a6ac0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 58, 144, 0.4);
}

.register-btn {
    background: linear-gradient(135deg, #2a3a70 0%, #3a4a8a 100%);
    color: white;
}

.register-btn:hover {
    background: linear-gradient(135deg, #3a4a80 0%, #4a5a9a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 58, 112, 0.4);
}

/* Chapter Steps */
.chapters-steps-section h2 {
    color: #2a3a70;
}

.chapters-steps .chapter-step {
    border-top: 3px solid #4a3a90;
    transition: all 0.3s ease;
}

.chapters-steps .chapter-step:hover {
    transform: translateY(-5px) scale(1.02);
}

.chapters-steps .step-number {
    background: linear-gradient(135deg, #2a3a70 0%, #4a3a90 100%);
}

/* Chapter FAQ */
.chapters-faq h2 {
    color: #2a3a70;
}

.chapter-faq-item {
    border-left: 4px solid #4a3a90;
    transition: all 0.3s ease;
}

.chapter-faq-item:hover {
    background: rgba(74, 58, 144, 0.05);
    transform: translateX(5px);
}

.chapter-faq-item h4 {
    color: #2a3a70;
}

/* CTA Navy */
.cta-navy {
    background: linear-gradient(135deg, #2a3a70 0%, #4a3a90 50%, #3a4a8a 100%);
}

.cta-navy .cta-btn {
    background: white;
    color: #2a3a70;
}

.cta-navy .cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .chapters-intro-section {
        grid-template-columns: 1fr;
    }
    
    .flip-card {
        height: 280px;
    }
    
    .chapters-hero-title {
        font-size: 2.5rem;
    }
    
    .chapters-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .chapter-action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
.hero-sage { background: linear-gradient(135deg, #9BC4A8 0%, #6B9A7A 100%); }
.hero-coral { background: linear-gradient(135deg, #FF8A80 0%, #E85D52 100%); }
.hero-lavender { background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%); }
.hero-pink { background: linear-gradient(135deg, #FFB6C1 0%, #E893A0 100%); }

/* Support Page Hero with Background Image */
.hero-support-bg {
    background: linear-gradient(135deg, rgba(248, 180, 196, 0.85) 0%, rgba(255, 204, 213, 0.8) 100%),
                url('attached_assets/image_1769337782787.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-support-bg .page-hero-title {
    color: #1e3a5f !important;
}

.hero-support-bg .page-hero-subtitle {
    color: #1e3a5f !important;
}

.hero-support-bg .breadcrumb-label {
    color: #1e3a5f !important;
}

/* Support Page Impact Banner Light Pink Title */
.support-impact-title {
    color: #FFB6C1 !important;
}
.hero-gold { background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%); }
.hero-purple { background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%); }
.hero-rose { background: linear-gradient(135deg, #FF6B95 0%, #E84A73 100%); }

/* Page Content */
.page-content {
    padding: 60px 0;
    background: var(--warm-white);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.content-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(93, 78, 140, 0.08);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(93, 78, 140, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card-icon.teal { background: linear-gradient(135deg, #E0F7F5 0%, #B8E8E3 100%); color: #2C9E95; }
.card-icon.purple-blue { background: linear-gradient(135deg, #E8E0F4 0%, #D4E6F8 100%); color: #6B5B9A; }
.card-icon.sage { background: linear-gradient(135deg, #E8F4EA 0%, #C8DFD0 100%); color: #5A8A66; }
.card-icon.coral { background: linear-gradient(135deg, #FFE4E1 0%, #FFCCCB 100%); color: #E85D52; }
.card-icon.lavender { background: linear-gradient(135deg, var(--light-purple) 0%, #D4C8E8 100%); color: var(--primary-purple); }
.card-icon.pink { background: linear-gradient(135deg, var(--light-pink) 0%, #FFB6C1 100%); color: #D85A7A; }
.card-icon.gold { background: linear-gradient(135deg, #FFF8DC 0%, #FFE4A0 100%); color: #B8860B; }
.card-icon.purple { background: linear-gradient(135deg, var(--light-purple) 0%, var(--secondary-purple) 100%); color: var(--deep-purple); }
.card-icon.rose { background: linear-gradient(135deg, #FFE4EC 0%, #FFB6C8 100%); color: #E84A73; }

.content-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--deep-purple);
    margin-bottom: 0.75rem;
}

.content-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 0.75rem;
    color: var(--deep-purple);
}

.role-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.role-list li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.role-list li i { color: var(--primary-purple); }

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(93, 78, 140, 0.08);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--light-purple);
    border-radius: 16px;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--deep-purple);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Bottom CTA */
.page-bottom-cta {
    text-align: center;
    padding: 3rem;
    border-radius: 24px;
    margin-top: 2rem;
}

.page-bottom-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.75rem;
}

.page-bottom-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.page-bottom-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--deep-purple);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-bottom-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-teal { background: linear-gradient(135deg, #4ECDC4 0%, #2C9E95 100%); }
.cta-purple-blue { background: linear-gradient(135deg, #7B68A6 0%, #6495ED 100%); }
.cta-sage { background: linear-gradient(135deg, #9BC4A8 0%, #6B9A7A 100%); }
.cta-coral { background: linear-gradient(135deg, #FF8A80 0%, #E85D52 100%); }
.cta-lavender { background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%); }
.cta-pink { background: linear-gradient(135deg, #FFB6C1 0%, #E893A0 100%); }
.cta-gold { background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%); }
.cta-purple { background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%); }
.cta-rose { background: linear-gradient(135deg, #FF6B95 0%, #E84A73 100%); }

/* Info Section */
.info-section {
    margin: 3rem 0;
}

.info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(93, 78, 140, 0.08);
}

.step-number {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-card h4 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.benefit-item {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(93, 78, 140, 0.06);
    color: #555;
}

.benefit-item i {
    color: var(--primary-purple);
    font-size: 1.1rem;
}

/* Openings Grid */
.openings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.opening-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(93, 78, 140, 0.08);
    border-left: 4px solid var(--primary-purple);
}

.opening-badge {
    display: inline-block;
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.opening-card h4 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.opening-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.apply-link {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.apply-link:hover {
    text-decoration: underline;
}

/* Impact Banner */
.impact-banner {
    background: linear-gradient(135deg, #4ECDC4 0%, #2C9E95 100%);
    padding: 2.5rem 0;
}

.impact-banner.purple-banner {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
}

.impact-banner.rose-banner {
    background: linear-gradient(135deg, #FF6B95 0%, #E84A73 100%);
}

.impact-banner.navy-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a6e 100%);
}

/* Support Page Hero Hearts Animation */
.support-hero-hearts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.support-heart {
    position: absolute;
    animation: supportHeartPop 2s ease-out infinite;
    opacity: 0;
}

.support-heart i {
    font-size: 40px;
    color: rgba(255, 105, 140, 0.9);
    filter: drop-shadow(0 0 10px rgba(255, 105, 140, 0.6));
}

.s-heart-1 { left: 5%; bottom: 15%; animation-delay: 0s; }
.s-heart-2 { left: 15%; bottom: 25%; animation-delay: 0.3s; }
.s-heart-3 { left: 25%; bottom: 10%; animation-delay: 0.6s; }
.s-heart-4 { left: 40%; bottom: 20%; animation-delay: 0.15s; }
.s-heart-5 { left: 55%; bottom: 30%; animation-delay: 0.45s; }
.s-heart-6 { left: 70%; bottom: 15%; animation-delay: 0.75s; }
.s-heart-7 { left: 85%; bottom: 25%; animation-delay: 0.2s; }
.s-heart-8 { left: 95%; bottom: 10%; animation-delay: 0.5s; }

.s-heart-1 i, .s-heart-5 i { font-size: 45px; color: rgba(255, 150, 180, 1); }
.s-heart-2 i, .s-heart-6 i { font-size: 55px; color: rgba(255, 105, 140, 1); }
.s-heart-3 i, .s-heart-7 i { font-size: 38px; color: rgba(229, 115, 155, 1); }
.s-heart-4 i, .s-heart-8 i { font-size: 50px; color: rgba(255, 182, 193, 1); }

@keyframes supportHeartPop {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.3);
    }
    15% {
        opacity: 1;
        transform: translateY(-30px) scale(1.3);
    }
    30% {
        transform: translateY(-60px) scale(1.1);
    }
    50% {
        opacity: 1;
        transform: translateY(-100px) scale(1.2);
    }
    70% {
        opacity: 0.7;
        transform: translateY(-140px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-180px) scale(0.6);
    }
}

.impact-banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}

.impact-banner-content > i {
    font-size: 3rem;
    opacity: 0.9;
}

.impact-banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.impact-banner-content p {
    opacity: 0.95;
    line-height: 1.5;
}

/* Partners Showcase */
.partners-showcase {
    margin-bottom: 3rem;
}

.partners-showcase h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.partners-logos-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(93, 78, 140, 0.08);
}

.partner-logo-item {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Featured Partners */
.featured-partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.featured-partner-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(93, 78, 140, 0.08);
}

.featured-partner-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
}

.partner-info {
    flex: 1;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.partner-info h4 {
    color: var(--deep-purple);
    margin-bottom: 0.35rem;
}

.partner-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Funding Cards */
.funding-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.funding-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(93, 78, 140, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.funding-card:hover {
    border-color: var(--primary-purple);
}

.funding-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-purple);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.funding-card h4 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.funding-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Donation Cards */
.donation-card {
    text-align: center;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #FFD1DC 0%, var(--secondary-purple) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.donation-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-purple);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.donation-card h3 {
    text-align: center;
}

.donation-card p {
    text-align: center;
}

/* Giving Options */
.giving-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.giving-option {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(93, 78, 140, 0.08);
}

.giving-option i {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.giving-option h4 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.giving-option p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .cards-grid.cards-4 { grid-template-columns: repeat(2, 1fr); }
    .openings-grid { grid-template-columns: repeat(2, 1fr); }
    .funding-cards { grid-template-columns: repeat(2, 1fr); }
    .giving-options { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-hero { padding: 60px 0; }
    .page-hero-title { font-size: 2rem; }
    .page-hero-subtitle { font-size: 1rem; }
    
    .cards-grid.cards-2,
    .cards-grid.cards-3,
    .cards-grid.cards-4 { grid-template-columns: 1fr; }
    
    .faq-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .openings-grid { grid-template-columns: 1fr; }
    .funding-cards { grid-template-columns: 1fr; }
    .giving-options { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .featured-partners { grid-template-columns: 1fr; }
    
    .impact-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-section { padding: 2rem; }
    .page-bottom-cta { padding: 2rem; }
}

/* ======================= */
/* PARTNERSHIPS PAGE STYLES */
/* ======================= */
.partnerships-section {
    background: #f8f7f4;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.partnerships-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-handshake {
    position: absolute;
    font-size: 2rem;
    animation: floatPartner 8s ease-in-out infinite;
}

.floating-handshake:nth-child(1) { top: 10%; left: 5%; color: #1e3a5f; animation-delay: 0s; }
.floating-handshake:nth-child(2) { top: 20%; right: 10%; color: #f8b4c4; animation-delay: 1s; font-size: 1.5rem; }
.floating-handshake:nth-child(3) { top: 40%; left: 8%; color: #2c4a6e; animation-delay: 2s; font-size: 2.5rem; }
.floating-handshake:nth-child(4) { top: 60%; right: 5%; color: #ffccd5; animation-delay: 3s; }
.floating-handshake:nth-child(5) { top: 75%; left: 12%; color: #1e3a5f; animation-delay: 4s; font-size: 1.8rem; }
.floating-handshake:nth-child(6) { bottom: 20%; right: 15%; color: #f8b4c4; animation-delay: 5s; font-size: 2.2rem; }
.floating-handshake:nth-child(7) { bottom: 35%; left: 3%; color: #2c4a6e; animation-delay: 6s; }
.floating-handshake:nth-child(8) { top: 15%; left: 40%; color: #ffccd5; animation-delay: 7s; font-size: 1.6rem; }

@keyframes floatPartner {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
}

.partnerships-hero {
    position: relative;
    padding: 100px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a6e 100%);
}

.partnerships-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
    animation: rotateBg 60s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.partnerships-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.partnerships-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.partnerships-title .title-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8b4c4 0%, #ffccd5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1e3a5f;
    animation: pulse 2s ease-in-out infinite;
}

.partnerships-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partnerships-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-item i {
    font-size: 1.3rem;
    color: #f8b4c4;
}

.stat-divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.partnerships-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f8b4c4 0%, #ffccd5 100%);
    color: #1e3a5f;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(248, 180, 196, 0.4);
}

.partnerships-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(248, 180, 196, 0.5);
}

.library-partners-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.library-badge {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a6e 100%);
    color: #fff;
}

.healthcare-badge {
    background: linear-gradient(135deg, #f8b4c4 0%, #ffccd5 100%);
    color: #1e3a5f;
}

.org-badge {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a6e 100%);
    color: #fff;
}

.library-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.library-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.library-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.library-image-container:hover .library-image {
    transform: scale(1.05);
}

.library-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8), transparent);
}

.library-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.library-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.library-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.library-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(30, 58, 95, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
}

.library-item:hover {
    background: rgba(248, 180, 196, 0.2);
    transform: translateX(10px);
}

.library-item i {
    font-size: 1.5rem;
    color: #1e3a5f;
}

.library-details h4 {
    font-size: 1.1rem;
    color: #1e3a5f;
    margin-bottom: 0.25rem;
}

.library-details span {
    font-size: 0.9rem;
    color: #718096;
}

.healthcare-partners-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
    text-align: center;
}

.healthcare-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.healthcare-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.healthcare-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(248, 180, 196, 0.15) 0%, rgba(255, 204, 213, 0.15) 100%);
    border-radius: 20px;
    border: 1px solid rgba(248, 180, 196, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.healthcare-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a5f, #2c4a6e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.healthcare-card:hover::before {
    transform: scaleX(1);
}

.healthcare-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.15);
}

.healthcare-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: #fff;
}

.healthcare-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

.healthcare-card .location {
    font-size: 0.95rem;
    color: #718096;
}

.healthcare-card .location i {
    color: #f8b4c4;
    margin-right: 0.5rem;
}

.partner-logos-collage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.partner-logos-collage .partner-logo-box {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 3px solid #f8b4c4;
    padding: 1.25rem;
    transition: all 0.3s ease;
    margin: -1.5px;
}

.partner-logos-collage .partner-logo-box:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 8px 25px rgba(248, 180, 196, 0.4);
}

.partner-logos-collage .partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partner-logos-collage .partner-logo-box {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .partner-logos-collage .partner-logo-box {
        width: 110px;
        height: 110px;
        padding: 1rem;
    }
}

.organizational-partners-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
    text-align: center;
}

.org-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.org-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.org-cta-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.05) 0%, rgba(44, 74, 110, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 95, 0.15);
    text-align: left;
}

.org-cta-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, #f8b4c4 0%, #ffccd5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1e3a5f;
}

.org-cta-text {
    flex: 1;
}

.org-cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.org-cta-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.become-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a6e 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.become-partner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

.contact-footer {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a6e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: left;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8b4c4 0%, #ffccd5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1e3a5f;
}

.contact-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.contact-info a {
    font-size: 1.25rem;
    color: #f8b4c4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffccd5;
}

.response-time {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.response-time i {
    margin-right: 0.5rem;
    color: #f8b4c4;
}

@media (max-width: 992px) {
    .library-content {
        grid-template-columns: 1fr;
    }
    
    .healthcare-cards {
        grid-template-columns: 1fr;
    }
    
    .org-cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .partnerships-title {
        font-size: 2.5rem;
        flex-direction: column;
    }
    
    .partnerships-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
}

/* Hot Pink Funding Button */
.funding-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

.funding-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 20, 147, 0.6);
    }
}

/* Corporate Sponsorships Page */
.sponsorship-intro {
    background: linear-gradient(135deg, rgba(93, 78, 140, 0.1), rgba(255, 182, 193, 0.15));
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(93, 78, 140, 0.2);
}

.sponsorship-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #5D4E8C;
    margin-bottom: 1.5rem;
}

.sponsorship-intro-text h2 i {
    color: #ff69b4;
    margin-right: 0.5rem;
}

.sponsorship-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.sponsorship-pdf-section {
    margin-bottom: 3rem;
}

.sponsorship-pdf-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5D4E8C;
    margin-bottom: 0.5rem;
    text-align: center;
}

.sponsorship-pdf-section h2 i {
    color: #e74c3c;
    margin-right: 0.5rem;
}

.pdf-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 1rem;
}

.pdf-download-btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #5D4E8C, #7B68A6);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 78, 140, 0.3);
}

.pdf-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 78, 140, 0.4);
}

.pdf-download-btn.secondary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.pdf-download-btn.secondary:hover {
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.pdf-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    height: 100%;
    min-height: 400px;
}

.pdf-fallback i {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.pdf-fallback p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.pdf-embed-container {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 2px solid rgba(93, 78, 140, 0.2);
}

.sponsorship-pdf-embed {
    width: 100%;
    height: 85vh;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .sponsorship-intro {
        padding: 2rem;
    }
    
    .sponsorship-intro-text h2 {
        font-size: 1.5rem;
    }
    
    .sponsorship-pdf-embed {
        height: 70vh;
    }
}
