/* Modern Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-primary: #FF69B4;
    --pink-light: #FFB6D9;
    --pink-pale: #FFE5F1;
    --navy-blue: #1E3A8A;
    --navy-dark: #0F2B5C;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #FFF9FC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--pink-primary), var(--navy-blue));
    border-radius: 5px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-light) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.btn-outline:hover {
    background: var(--pink-primary);
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* New Hero Section with Logo Background */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-logo-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(1.1);
    opacity: 0.4;
    transform: scale(1.1);
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 229, 241, 0.9) 50%,
        rgba(255, 255, 255, 0.85) 100%
    );
    z-index: 2;
}

.hero-content-new {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-title-new {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -3px;
    animation: titleSlideUp 1s ease-out 0.3s both;
}

.hero-subtitle-new {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-dark);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    animation: subtitleSlideUp 1s ease-out 0.6s both;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    animation: bounceArrow 2s infinite;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
}

.scroll-down-arrow:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.6);
}

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

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

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

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Old Hero Section (keep for other pages if needed) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.15) 0%,
        rgba(255, 255, 255, 0.95) 30%,
        rgba(255, 255, 255, 0.95) 70%,
        rgba(30, 58, 138, 0.15) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 255, 255, 0.95));
    border: 1px solid var(--pink-light);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.15);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-title {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-family: 'Poppins', sans-serif;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-item {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.25);
    border-color: var(--pink-light);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: var(--pink-primary);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Preview */
.about-preview {
    background: var(--bg-light);
}

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

.about-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 105, 180, 0.05);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.about-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.about-card p {
    line-height: 1.8;
}

.about-cta {
    text-align: center;
    margin-top: 48px;
}

/* Programs */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.program-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--pink-primary);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-left-width: 6px;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon i {
    font-size: 1.5rem;
    color: white;
}

.program-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.programs-cta {
    text-align: center;
    margin-top: 48px;
}

/* Impact Preview */
.impact-preview {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.impact-stat {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.05);
}

.impact-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.impact-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 8px;
}

.impact-cta {
    text-align: center;
    margin-top: 48px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-dark) 100%);
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--pink-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 40px 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 24px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 140px 24px 60px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    /* New Hero Responsive */
    .hero-title-new {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -2px;
    }

    .hero-subtitle-new {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .scroll-down-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 30px;
    }

    .hero-logo-bg {
        filter: blur(6px) brightness(1.1);
    }

    /* New sections responsive */
    .story-text-home p {
        font-size: 1rem;
        text-align: left;
    }

    .impact-breakdown {
        grid-template-columns: 1fr;
    }

    .impact-stats-home {
        grid-template-columns: 1fr;
    }

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

    .reach-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item-geo {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
    text-align: center;
}

.page-title {
    margin-bottom: 16px;
}

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

/* Our Story */
.our-story {
    padding: 80px 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-images-home {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-image-home {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-image-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image-home.large {
    width: 100%;
}

.story-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-image-home.large img {
    min-height: 400px;
    max-height: 500px;
    object-fit: cover;
}

.image-grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-grid-home .story-image-home {
    min-height: 250px;
}

.image-grid-home .story-image-home img {
    min-height: 250px;
    max-height: 300px;
    object-fit: cover;
}

.story-quote {
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    padding: 40px;
    border-radius: 20px;
    color: white;
    margin-bottom: 40px;
    position: relative;
}

.story-quote i {
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.story-quote p {
    font-size: 1.4rem;
    font-style: italic;
    color: white;
    margin: 0;
    padding-left: 50px;
    font-weight: 500;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.story-text strong {
    color: var(--pink-primary);
    font-weight: 600;
}

.story-highlight {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    border-left: 4px solid var(--pink-primary);
}

.story-highlight h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.story-highlight p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.story-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-placeholder {
    background: var(--bg-light);
    border: 2px dashed #ddd;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #999;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: var(--pink-primary);
    background: rgba(255, 105, 180, 0.05);
}

.image-placeholder.large {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #ccc;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.image-placeholder span {
    font-size: 0.9rem;
    color: #999;
}

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

.story-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image.large {
    min-height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-image.large img {
    min-height: 400px;
    object-fit: cover;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-grid .story-image {
    min-height: 250px;
}

.image-grid .story-image img {
    min-height: 250px;
    object-fit: cover;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid rgba(255, 105, 180, 0.05);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* What We Do */
.what-we-do {
    padding: 80px 0;
}

/* By Numbers */
.by-numbers {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.number-item {
    text-align: center;
}

.number-item .number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.number-item .label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Team Page Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.05);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.member-photo {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--pink-primary);
}

.member-photo i {
    font-size: 4rem;
    color: #ddd;
}

.member-info {
    padding: 32px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.member-role {
    color: var(--pink-primary);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.member-info p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-images-home {
        margin-top: 30px;
    }
    
    .image-grid-home {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .story-quote p {
        font-size: 1.2rem;
        padding-left: 40px;
    }

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

    .number-item .number {
        font-size: 3rem;
    }
}

/* Home Page - Story Text */
.story-text-home {
    max-width: 900px;
    margin: 0 auto;
}

.story-text-home p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 24px;
    text-align: center;
}

.story-text-home strong {
    color: var(--pink-primary);
    font-weight: 600;
}

/* Program Impact Home */
.program-impact-home {
    padding: 80px 0;
    background: var(--bg-light);
}

.impact-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.impact-card-home {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.05);
}

.impact-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.impact-icon-home {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-icon-home i {
    font-size: 1.5rem;
    color: white;
}

.impact-stats-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.impact-stat-item {
    text-align: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number-home {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    margin-bottom: 4px;
}

.stat-label-home {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.impact-card-home p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Success Stories Home */
.success-stories-home {
    padding: 80px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.story-card-home {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.05);
}

.story-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.story-icon-home {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.story-icon-home i {
    font-size: 1.5rem;
    color: white;
}

.story-card-home h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.story-card-home p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.story-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 2px solid var(--pink-light);
}

.story-author strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.story-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Geographic Reach Home */
.geographic-reach-home {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
}

.reach-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.state-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.05);
}

.state-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.state-info-card h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.state-stats-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item-geo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--pink-primary);
}

.stat-number-geo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.stat-label-geo {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Smooth Scrolling & Performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

/* ============================================
   TEAM PAGE STYLES
   ============================================ */

.team-intro {
    padding: 60px 0;
    background: white;
}

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

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

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

.core-team {
    padding: 80px 0;
    background: var(--bg-light);
}

.member-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.volunteer-team {
    padding: 80px 0;
    background: white;
}

.volunteer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.volunteer-stat-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.volunteer-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.volunteer-stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.volunteer-stat-card .stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.join-team {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-dark));
}

.join-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.join-content h2 {
    color: white;
    margin-bottom: 20px;
}

.join-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.join-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   MEDIA & PRESS PAGE STYLES
   ============================================ */

.asia-record-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pink-pale) 0%, var(--white) 100%);
}

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

.asia-record-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.asia-record-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.asia-record-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    color: var(--navy-blue);
}

.asia-record-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.asia-record-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .asia-record-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .asia-record-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

.media-intro {
    padding: 60px 0;
    background: white;
}

.newspaper-coverage {
    padding: 80px 0;
    background: var(--bg-light);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.2);
}

.media-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

.media-item:hover .media-image img {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.9), rgba(30, 58, 138, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.media-overlay i {
    font-size: 3rem;
    color: white;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

.appreciation-letters {
    padding: 80px 0;
    background: white;
}

.letters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.letter-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.letter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.letter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.letter-icon i {
    font-size: 2rem;
    color: white;
}

.letter-info h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.letter-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.press-kit {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(30, 58, 138, 0.05));
}

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

.press-content h2 {
    margin-bottom: 20px;
}

.press-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* ============================================
   COMMUNITY STORIES PAGE STYLES
   ============================================ */

.stories-intro {
    padding: 60px 0;
    background: white;
}

.featured-stories {
    padding: 80px 0;
    background: var(--bg-light);
}

.story-feature {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: start;
}

.story-feature.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.story-feature.reverse .story-image-container {
    order: 2;
}

.story-image-container {
    position: relative;
}

.story-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: white;
    border: 2px dashed var(--pink-light);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pink-primary);
}

.story-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.story-content {
    padding: 20px 0;
}

.story-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.story-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.story-excerpt {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    padding-left: 24px;
    border-left: 4px solid var(--pink-primary);
    margin-bottom: 20px;
}

.story-details {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--pink-light);
}

.story-details span {
    color: var(--text-light);
}

.story-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.story-impact {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

.story-impact h4 {
    color: var(--pink-primary);
    margin-bottom: 12px;
}

.story-impact ul {
    list-style: none;
    padding: 0;
}

.story-impact li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-light);
}

.story-impact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink-primary);
    font-weight: bold;
}

.story-gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    text-align: center;
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border: 2px dashed var(--pink-light);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pink-primary);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.gallery-placeholder:hover {
    border-color: var(--pink-primary);
    background: rgba(255, 105, 180, 0.05);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.gallery-caption {
    font-size: 0.95rem;
    color: var(--text-light);
}

.share-story {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-dark));
}

.share-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.share-content h2 {
    color: white;
    margin-bottom: 20px;
}

.share-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ============================================
   CONTACT / GET INVOLVED PAGE STYLES
   ============================================ */

.involvement-options {
    padding: 80px 0;
    background: var(--bg-light);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.option-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
    border-color: var(--pink-light);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.option-icon i {
    font-size: 2rem;
    color: white;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.option-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.option-list {
    list-style: none;
    padding: 0;
}

.option-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-light);
}

.option-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--pink-primary);
    font-size: 1.5rem;
    line-height: 1;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.google-form-link-center {
    text-align: center;
    padding: 40px 0;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.form-message {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    margin-top: 16px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
}

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

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

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-light);
}

.info-card a {
    color: var(--pink-primary);
    text-decoration: none;
    font-weight: 600;
}

.social-media-section {
    padding: 80px 0;
    background: white;
}

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

.social-content h2 {
    margin-bottom: 16px;
}

.social-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* ============================================
   RESOURCES PAGE STYLES
   ============================================ */

.resources-intro {
    padding: 60px 0;
    background: white;
}

.featured-resource {
    padding: 80px 0;
    background: var(--bg-light);
}

.resource-spotlight {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.resource-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.resource-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon-large i {
    font-size: 5rem;
    color: white;
}

.resource-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.resource-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.resource-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.resource-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.feature-item i {
    color: var(--pink-primary);
    font-size: 1.2rem;
}

.resource-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resource-stats {
    display: flex;
    gap: 24px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.resource-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.additional-resources {
    padding: 80px 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.resource-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
}

.card-icon-resource {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-status {
    margin-top: 16px;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.coming-soon {
    background: rgba(255, 105, 180, 0.1);
    color: var(--pink-primary);
}

.how-to-use {
    padding: 80px 0;
    background: var(--bg-light);
}

.use-content {
    max-width: 1000px;
    margin: 0 auto;
}

.use-content h2 {
    text-align: center;
    margin-bottom: 48px;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.use-item {
    text-align: center;
}

.use-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink-primary), var(--navy-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.use-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.use-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.bulk-request {
    padding: 80px 0;
    background: white;
}

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

.bulk-content h2 {
    margin-bottom: 16px;
}

.bulk-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .story-feature,
    .story-feature.reverse {
        grid-template-columns: 1fr;
    }

    .story-feature.reverse .story-image-container {
        order: 0;
    }

    .resource-spotlight {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .resource-features {
        grid-template-columns: 1fr;
    }

    .join-buttons,
    .social-links {
        flex-direction: column;
    }

    .social-link-btn,
    .join-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
