/* ========================================
   NANE DANCE HUB - STYLES
   Color Palette from Logo:
   - Primary Pink: #E91E8C
   - Black: #000000
   - Light Gray: #F5F5F5
   - White: #FFFFFF
   ======================================== */

/* ========== Reset & Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E91E8C, transparent);
    margin: 1rem auto 0;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: #E91E8C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c41a6b;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: #E91E8C;
    color: white;
}

.btn-primary:hover {
    background-color: #c41a6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(233, 30, 140, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #E91E8C;
    border: 2px solid #E91E8C;
}

.btn-secondary:hover {
    background-color: #E91E8C;
    color: white;
}

/* ========== Header & Navigation ========== */
.header {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: 1px;
}

.logo-text .tagline {
    font-size: 0.75rem;
    color: #E91E8C;
    font-style: italic;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #E91E8C;
}

/* ========== Dropdown Menu ========== */
.nav-menu li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    z-index: 1000;
}

.nav-menu li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #F5F5F5;
    color: #E91E8C;
    padding-left: 2rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* ========== Hero Section ========== */
.hero {
    padding: 100px 20px;
    text-align: center;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('32.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ========== Hero Slideshow ========== */
.hero-slideshow {
    padding: 0;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.hero-slideshow .hero-content,
.hero-slideshow .hero-buttons,
.hero-slideshow .slideshow-dots {
    position: relative;
    z-index: 2;
}

.slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    margin: 1.5rem 0;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 500;
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

/* ========== Hero Text Animations ========== */
.hero-content h1 {
    animation: slideInDown 0.8s ease-out backwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInScale 0.8s ease-out 0.6s backwards;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.hero-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* ========== Hero Text Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-hero-statement {
    font-size: 3rem !important;
    font-weight: 700 !important;
    line-height: 1.4;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Mission Section ========== */
.mission {
    background-color: white;
    padding: 80px 20px;
    margin-top: -150px;
    position: relative;
    z-index: 10;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-statement {
    text-align: center;
    margin-top: 2rem;
}

.mission-statement h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-statement p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ========== Vision Section ========== */
.vision {
    background-color: white;
    padding: 80px 20px;
    position: relative;
    z-index: 10;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vision-statement {
    text-align: center;
    margin-top: 2rem;
}

.vision-statement h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vision-statement p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #E91E8C;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 16px rgba(233, 30, 140, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #E91E8C;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* ========== Programs Section ========== */
.programs {
    background-color: #F5F5F5;
    padding: 120px 20px 80px 20px;
    margin-top: 120px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(233, 30, 140, 0.2);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #E91E8C;
}

.program-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ========== Impact Section ========== */
.impact {
    background-color: white;
    padding: 80px 20px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background-color: #F5F5F5;
    border-radius: 12px;
    border-top: 4px solid #E91E8C;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E91E8C;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.impact-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background-color: #F5F5F5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(233, 30, 140, 0.2);
}

.gallery-placeholder {
    background: linear-gradient(135deg, #E91E8C, #c41a6b);
    color: white;
    padding: 80px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item p {
    padding: 1.5rem;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    text-align: center;
}

/* ========== Impact Video Section ========== */
.impact-video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.2);
    width: 100%;
    max-width: 800px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(233, 30, 140, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    background-color: #E91E8C;
    transform: translate(-50%, -50%) scale(1.15);
}

.video-description {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0;
}

/* ========== Get Involved Section ========== */
.get-involved {
    background: linear-gradient(135deg, #E91E8C 0%, #c41a6b 100%);
    padding: 80px 20px;
    color: white;
}

.get-involved h2,
.get-involved h3 {
    color: white;
}

.get-involved h2::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.involvement-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    color: #000;
    transition: all 0.3s ease;
}

.involvement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.involvement-card h3 {
    color: #E91E8C;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.involvement-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* ========== Newsletter Section ========== */
.newsletter {
    background: linear-gradient(135deg, #E91E8C 0%, #c41a6b 100%);
    padding: 60px 20px;
    color: white;
}

.newsletter h2,
.newsletter h2::after {
    color: white;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    padding: 14px 32px;
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ========== Contact Section ========== */
.contact {
    background-color: #F5F5F5;
    padding: 80px 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info,
.social-links {
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h3,
.social-links h3 {
    color: #E91E8C;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-info a {
    font-weight: 600;
}

.socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #E91E8C;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.socials a:hover {
    background-color: #c41a6b;
    transform: scale(1.1);
}

/* ========== Footer ========== */
.footer {
    background-color: #000;
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: #E91E8C;
}

.footer a:hover {
    text-decoration: underline;
}

/* ========== About Page Styles ========== */
.about-hero {
    padding: 80px 20px;
    text-align: center;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: heroZoom 20s ease-in-out infinite;
}

@keyframes heroZoom {
    0%, 100% {
        background-size: cover;
    }
    50% {
        background-size: 110%;
    }
}

.about-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 20px;
}

.who-we-are {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat-card {
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #E91E8C;
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(233, 30, 140, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.about-stat-card h3 {
    font-size: 1.8rem;
    color: #E91E8C;
    margin-bottom: 0.5rem;
}

.about-stat-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.mission-vision {
    background-color: #F5F5F5;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-vision-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #E91E8C;
}

.mission-vision-card h2 {
    font-size: 1.8rem;
    color: #E91E8C;
    margin-bottom: 1.5rem;
    text-align: left;
    padding-bottom: 0;
}

.mission-vision-card h2::after {
    content: none;
}

.mission-vision-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

.our-values {
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.value-item {
    background-color: #F5F5F5;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(233, 30, 140, 0.15);
}

.value-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.location {
    background-color: #F5F5F5;
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.location-text h3 {
    font-size: 1.4rem;
    color: #E91E8C;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.location-highlights {
    list-style: none;
    padding: 0;
}

.location-highlights li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.location-highlights li:last-child {
    border-bottom: none;
}

.location-highlights strong {
    color: #E91E8C;
}

.map-placeholder {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content h4 {
    font-size: 1.5rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.map-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.map-content hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

.about-cta {
    background: linear-gradient(135deg, #E91E8C 0%, #c41a6b 100%);
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.about-cta h2 {
    color: white;
}

.about-cta h2::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.about-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Mobile Responsiveness ========== */
@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    /* Logo */
    .logo-img {
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    /* Hero Section */
    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Mission Section */
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Headings */
    h2 {
        font-size: 2rem;
    }

    /* Program Cards */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Impact Stats */
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Gallery */
    .impact-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-placeholder {
        padding: 60px 20px;
        min-height: 150px;
    }

    /* Get Involved */
    .involvement-grid {
        grid-template-columns: 1fr;
    }

    /* Sections Padding */
    .mission,
    .programs,
    .impact,
    .get-involved,
    .contact {
        padding: 60px 20px;
    }

    /* Contact Content */
    .contact-content {
        gap: 2rem;
    }

    /* About Page */
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-placeholder {
        min-height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    /* Headings */
    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    /* Impact Stats */
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Socials */
    .socials a {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Sections Padding */
    .mission,
    .programs,
    .impact,
    .get-involved,
    .contact {
        padding: 40px 20px;
    }

    /* Logo */
    .logo-img {
        height: 45px;
    }

    .logo-text h1 {
        font-size: 0.95rem;
    }

    .logo-text .tagline {
        font-size: 0.65rem;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* About Page */
    .about-hero h1 {
        font-size: 1.6rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .location-text h3 {
        font-size: 1.2rem;
    }

    .map-content h4 {
        font-size: 1.3rem;
    }

    .about-section {
        padding: 40px 20px;
    }
}

/* ========== Accessibility ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========== Skip to Main Content Link ========== */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #E91E8C;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

.skip-to-main:focus {
    top: 0;
}

/* ========== Program Pages Styles ========== */
.program-hero {
    padding: 80px 20px;
    text-align: center;
    color: white;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.program-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.program-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.program-hero .hero-content {
    position: relative;
    z-index: 2;
}

.program-hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
}

.program-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.program-section {
    padding: 80px 20px;
}

.program-section.bg-light {
    background-color: #F5F5F5;
}

.program-overview {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.overview-text h2 {
    text-align: left;
    padding-bottom: 1rem;
}

.overview-text h2::after {
    margin: 1rem 0 0 0;
}

.overview-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    background: linear-gradient(135deg, #E91E8C, #c41a6b);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 450px;
}

.video-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.2);
    background-color: #000;
}

.video-placeholder iframe {
    display: block;
    width: 100%;
    height: auto;
    min-height: 400px;
    border: none;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.activity-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(233, 30, 140, 0.2);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.activity-card h3 {
    font-size: 1.3rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.activity-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.who-serves-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.serve-card {
    background-color: #F5F5F5;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #E91E8C;
    transition: all 0.3s ease;
}

.serve-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 16px rgba(233, 30, 140, 0.15);
}

.serve-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serve-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.serve-card h3 {
    font-size: 1.2rem;
    color: #E91E8C;
    margin-bottom: 0.5rem;
}

.serve-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.program-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.gallery-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(233, 30, 140, 0.2);
}

.gallery-image {
    background: linear-gradient(135deg, #E91E8C, #c41a6b);
    color: white;
    padding: 60px 20px;
    text-align: center;
    font-size: 2.5rem;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card p {
    padding: 1.5rem;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin: 0;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-stat {
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #E91E8C;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #E91E8C;
    margin-bottom: 0.5rem;
}

.impact-stat p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.program-cta {
    background: linear-gradient(135deg, #E91E8C 0%, #c41a6b 100%);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.program-cta h2 {
    color: white;
}

.program-cta h2::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.program-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.program-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.impact-story {
    background-color: #F5F5F5;
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid #E91E8C;
    text-align: center;
}

.impact-story h2 {
    text-align: center;
    color: #000;
}

.impact-story h2::after {
    content: none;
}

.impact-story p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    line-height: 1.9;
}

/* ========== Get Involved Page Styles ========== */
.get-involved-hero {
    padding: 100px 20px;
    text-align: center;
    color: white;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.get-involved-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.get-involved-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.get-involved-hero .hero-content {
    position: relative;
    z-index: 2;
}

.get-involved-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.get-involved-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 80px 20px;
    background-color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    text-align: left;
}

.story-text h2::after {
    margin: 1rem 0 0 0;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.image-placeholder-large {
    background: linear-gradient(135deg, #E91E8C, #c41a6b);
    color: white;
    padding: 120px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.involvement-section {
    padding: 80px 20px;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.involvement-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.involvement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(233, 30, 140, 0.15);
}

.involvement-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.involvement-icon {
    font-size: 2.5rem;
}

.involvement-header h3 {
    font-size: 1.4rem;
    color: #E91E8C;
    margin: 0;
}

.involvement-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.involvement-details {
    background-color: #F5F5F5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.involvement-details h4 {
    font-size: 1rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.involvement-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.involvement-details li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.impact-comparison {
    padding: 80px 20px;
    background-color: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background-color: #F5F5F5;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.comparison-card.highlight {
    background: linear-gradient(135deg, #E91E8C 0%, #c41a6b 100%);
    color: white;
    border-color: #E91E8C;
}

.comparison-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.comparison-card.highlight h3 {
    color: white;
}

.big-stat {
    font-size: 3rem;
    font-weight: 700;
    color: #E91E8C;
    margin: 1rem 0;
}

.comparison-card.highlight .big-stat {
    color: white;
}

.comparison-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.comparison-card.highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.comparison-cost {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 1rem;
}

.testimonials-section {
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #E91E8C;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.testimonial-author {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #E91E8C;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #999;
}

.transparency-section {
    padding: 80px 20px;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.transparency-card {
    background-color: #F5F5F5;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.transparency-icon {
    font-size: 2.5rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.transparency-card h3 {
    font-size: 1.2rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.transparency-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.faq-section {
    padding: 80px 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.final-cta {
    background: linear-gradient(135deg, #E91E8C 0%, #c41a6b 100%);
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
}

.final-cta h2::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-large {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ========== Donate Page Styles ========== */
.donate-hero {
    padding: 100px 20px;
    text-align: center;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.donate-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.donate-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.donate-hero-cta {
    position: absolute;
    bottom: 30px;
    right: 100px;
    z-index: 2;
}

.donate-hero-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
}

.programs-hero-cta {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.programs-hero-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
}

.donate-main {
    padding: 80px 20px;
    background-color: white;
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.donation-info {
    background-color: #F5F5F5;
    padding: 2.5rem;
    border-radius: 12px;
}

.donation-info h2 {
    text-align: left;
    font-size: 1.8rem;
}

.donation-info h2::after {
    content: none;
}

.donation-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.donation-purposes {
    margin-bottom: 2.5rem;
}

.donation-purposes h3 {
    font-size: 1.2rem;
    color: #E91E8C;
    margin-bottom: 1.5rem;
    text-align: left;
}

.purpose-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.purpose-item:last-child {
    border-bottom: none;
}

.purpose-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.purpose-text strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.purpose-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.donation-impact {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #E91E8C;
}

.donation-impact h3 {
    font-size: 1.1rem;
    color: #E91E8C;
    margin-bottom: 1.5rem;
}

.impact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.impact-row:last-child {
    border-bottom: none;
}

.impact-amount {
    font-weight: 700;
    color: #E91E8C;
    font-size: 1.1rem;
    min-width: 80px;
}

.impact-description {
    font-size: 0.95rem;
    color: #666;
}

.impact-row.custom .impact-amount {
    color: #059669;
}

.donation-form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.donation-form-container h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.donation-form-container h2::after {
    content: none;
}

.donation-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.tab-button {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    color: #999;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-button:hover {
    color: #E91E8C;
}

.tab-button.active {
    color: #E91E8C;
    border-bottom-color: #E91E8C;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #E91E8C;
}

.amount-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency {
    position: absolute;
    left: 15px;
    font-weight: 600;
    color: #E91E8C;
}

.amount-input-group input {
    padding-left: 45px;
    flex: 1;
}

.form-group small {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.btn-full {
    width: 100%;
}

.quick-donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.quick-donate-btn {
    background-color: #F5F5F5;
    border: 2px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-donate-btn:hover {
    border-color: #E91E8C;
    background-color: #fff;
    transform: translateY(-4px);
}

/* ========== Gallery Section ========== */
.gallery-section {
    padding: 80px 20px;
    background-color: #F5F5F5;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.gallery-section .section-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item.video-item {
    grid-column: span 1;
}

.gallery-item.video-item video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item.image-item {
    grid-column: span 1;
    min-height: 300px;
}

.gallery-item.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.video-item:first-child {
        grid-column: span 1;
    }
    
    .gallery-item.video-item:nth-child(2) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    /* Hero Section Tablet */
    .hero {
        padding: 80px 20px;
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 1.2rem 0;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 1.2rem;
    }

    .hero-buttons .btn {
        padding: 11px 25px;
        font-size: 0.95rem;
    }

    /* Gallery Section Tablet */
    .gallery-section h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Navigation Mobile */
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    /* Container padding */
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    /* Hero Section Mobile */
    .hero {
        padding: 60px 15px;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 1rem 0;
        max-width: 100%;
        line-height: 1.4;
    }

    .hero-buttons {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Gallery Section Mobile */
    .gallery-section {
        padding: 50px 15px;
    }
    
    .gallery-section h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Navbar Mobile */
    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    /* Section Headings Mobile */
    h2 {
        font-size: 1.5rem !important;
    }

    h1 {
        font-size: 1.5rem !important;
    }

    /* General Text Mobile */
    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Buttons Mobile */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

.gallery-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.gallery-cta .btn {
    padding: 14px 40px;
    font-size: 1.05rem;
    font-weight: 600;
}

/* ========== Contact & Inquiry Form Styles ========== */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .hero-content {
    max-width: 800px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.contact-inquiry-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.contact-inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-inquiry-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-inquiry-info h2,
.contact-inquiry-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item p {
    color: #4b5563;
    font-size: 1rem;
}

.info-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Form Styles */
.contact-inquiry-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1f2937;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.35rem;
    min-height: 1.2rem;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 0.35rem;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group.checkbox a {
    color: #667eea;
    text-decoration: none;
}

.form-group.checkbox a:hover {
    text-decoration: underline;
}

.char-count {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.35rem;
}

/* Form Messages */
.form-message {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-message.success-message {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.form-message.error-message {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.form-message .message-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.form-message strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Button Styling */
.btn-full {
    width: 100% !important;
    padding: 0.875rem 1.5rem !important;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:disabled,
.btn-full:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* FAQ Section */
.contact-faq {
    padding: 4rem 2rem;
    background: white;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Form Input Placeholders */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    color: #1f2937;
}

.form-group select option:first-child {
    color: #9ca3af;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-inquiry-form {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.quick-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E91E8C;
    margin-bottom: 0.5rem;
}

.quick-impact {
    font-size: 0.85rem;
    color: #666;
}

.bank-transfer-info {
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 8px;
}

.bank-transfer-info h3 {
    font-size: 1.2rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.bank-transfer-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.bank-details {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #333;
}

.detail-value {
    color: #E91E8C;
    font-weight: 600;
}

.bank-note {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.bank-note p {
    margin: 0;
    color: #92400e;
}

.request-details-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.request-details-form h4 {
    color: #E91E8C;
    margin-bottom: 0.5rem;
}

.request-details-form p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.request-details-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.trust-section {
    padding: 80px 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.2rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.faq-donate {
    padding: 80px 20px;
    background-color: white;
}

.donate-cta {
    background: linear-gradient(135deg, #E91E8C 0%, #c41a6b 100%);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.donate-cta h2 {
    color: white;
}

.donate-cta h2::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.donate-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

    /* Program & Get Involved & Donate Mobile */
    .program-hero h1 {
        font-size: 1.6rem;
    }

    .program-overview {
        grid-template-columns: 1fr;
    }

    .get-involved-hero h1 {
        font-size: 1.8rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .donate-hero h1 {
        font-size: 1.6rem;
    }

    .donate-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder-large {
        min-height: 250px;
    }

    .involvement-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .transparency-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons-large {
        flex-direction: column;
    }

    .cta-buttons-large .btn {
        width: 100%;
    }
}

/* ========== Programs Page Styles ========== */
.programs-hero {
    background: linear-gradient(135deg, #E91E8C 0%, #c41a6b 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.programs-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.programs-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.programs-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.programs-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.program-details-section {
    background-color: #F5F5F5;
    padding: 80px 20px;
}

.program-details-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(233, 30, 140, 0.2);
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.detail-card h3 {
    font-size: 1.2rem;
    color: #E91E8C;
    margin-bottom: 0.75rem;
}

.detail-card p {
    color: #666;
    line-height: 1.7;
}

.get-started {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
}

.get-started h2 {
    margin-bottom: 1.5rem;
}

.get-started p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* ========== Quick Links Section ========== */
.quick-links {
    background-color: #f9f9f9;
    padding: 60px 20px;
    border-top: 1px solid #e0e0e0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-link-item h3 {
    font-size: 1.2rem;
    color: #E91E8C;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.quick-link-item ul {
    list-style: none;
    padding: 0;
}

.quick-link-item ul li {
    margin-bottom: 0.75rem;
}

.quick-link-item ul li a {
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    padding-left: 0;
    display: inline-block;
}

.quick-link-item ul li a:hover {
    color: #E91E8C;
    padding-left: 5px;
}

/* ========== Meet the Team Section ========== */
.meet-the-team {
    background-color: #f5f5f5;
}

.meet-the-team h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #333;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 1.5rem 1rem 0.5rem;
    font-weight: 600;
}

.team-member .role {
    color: #E91E8C;
    font-weight: 600;
    font-size: 1rem;
    margin: 0.5rem 1rem;
}

.team-member .bio {
    color: #666;
    font-size: 0.95rem;
    margin: 1rem;
    line-height: 1.5;
}

/* ========== Map Section ========== */
.map-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.map-container iframe {
    display: block;
    border-radius: 10px;
}

/* ========== Partners Section ========== */
.partners {
    background-color: white;
    padding: 80px 20px;
}

.partners h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(233, 30, 140, 0.15);
    border-color: #E91E8C;
}

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h3 {
    font-size: 1.3rem;
    color: #E91E8C;
    margin-bottom: 1rem;
}

.partner-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== Print Styles ========== */
@media print {
    .navbar,
    .hero-buttons,
    .get-involved,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .skip-to-main {
        display: none;
    }
}
