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

:root {
    /* Private Equity Color Palette */
    --primary-dark: #0a0f1a;
    --primary-orange: #e08327;
    --primary-light: #f8f9fa;
    --accent-slate: #2c3e50;
    --accent-charcoal: #34495e;
    --accent-navy: #1e3a8a;
    --accent-burgundy: #7c2d12;
    --text-dark: #1a202c;
    --text-light: #aaadb1;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --rich-brown: #3e2723;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

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

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-logo h2 {
    font-family: 'Sange', 'Libre Baskerville', serif;
    color: var(--primary-dark);
    margin: 0;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

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

.nav-link:hover {
    color: var(--primary-orange);
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Sections */
.page {
    min-height: 100vh;
    padding-top: 0;
}

/* Hero Sections */
.hero {
    min-height: 85vh;
    background: var(--primary-dark);
    background-image: url('images/youth-centre.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: visible;
    padding: 6rem 0 8rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 26, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    padding: 0 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
    margin-left: -2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image {
    flex: 1;
    text-align: right;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1600px;
    width: calc(100% - 6rem);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    z-index: 20;
}

.hero-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 1rem 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-card:nth-child(1) { 
    animation-delay: 0.4s; 
    background: var(--accent-slate);
}
.hero-card:nth-child(2) { 
    animation-delay: 0.5s; 
    background: var(--accent-charcoal);
}
.hero-card:nth-child(3) { 
    animation-delay: 0.6s; 
    background: var(--accent-navy);
}
.hero-card:nth-child(4) { 
    animation-delay: 0.7s; 
    background: var(--accent-burgundy);
}

.hero-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-card:hover::after {
    opacity: 1;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.hero-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* About Hero Section */
.about-hero {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 26, 0.8);
    z-index: 2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.about-hero .hero-text {
    text-align: center;
    max-width: 800px;
}

.about-hero .hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.about-hero .hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 600px;
    width: 100%;
}

.hero-stats .stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.mission-text h2 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mission-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.mission-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 131, 39, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-container:hover .mission-img {
    transform: scale(1.05);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Support Hero */
.support-hero {
    background: var(--accent-charcoal);
    padding: 12rem 4rem 6rem 4rem;
    text-align: center;
    color: var(--white);
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.approach-box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 2px solid var(--primary-orange);
    box-shadow: var(--shadow-card);
}

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

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--primary-orange);
}

.approach-icon svg {
    width: 100%;
    height: 100%;
}

.approach-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.approach-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-navy) 100%);
    padding: 12rem 0 6rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.9) 0%, rgba(30, 58, 138, 0.8) 100%);
    z-index: 1;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 2;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    justify-content: center;
}

.contact-hero .hero-text {
    text-align: center;
    margin-left: 0;
    flex: none;
    max-width: 100%;
}

.contact-hero .hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgb(255, 255, 255);
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Overview Section */
    .overview-section {
        padding: 5rem 0 5rem;
        background: var(--gray-light);
        position: static;
        z-index: 1;
        margin-top: 0;
        padding-top: 8rem;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.overview-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.overview-content p {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 1.5rem;
    overflow: hidden;
    width: 100%;
    outline: none;
}

.gallery-slide {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--white);
}

.gallery-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-slide:hover img { transform: scale(1.05); }

.gallery-btn {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    color: var(--primary-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.gallery-btn:hover { background: var(--gray-light); }
.gallery-btn i { color: var(--primary-dark); }

@media (max-width: 768px) {
    .gallery-track { grid-auto-columns: minmax(70%, 1fr); }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-nav.prev { left: 60px; }
.lightbox-nav.next { right: 60px; }

@media (max-width: 768px) {
    .lightbox-nav {
        top: auto;
        bottom: 20px;
        transform: none;
        background: rgba(255,255,255,0.95);
        width: 44px;
        height: 44px;
    }
    /* Place arrows closer together near the bottom center on mobile */
    .lightbox-nav.prev { left: calc(50% - 56px); }
    .lightbox-nav.next { left: calc(50% + 12px); right: auto; }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--white);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.see-all-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
}

.see-all-link:hover {
    text-decoration: underline;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-box {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 0;
    text-align: left;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-orange);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.feature-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--primary-orange) transparent transparent;
    opacity: 0.1;
    transition: opacity 0.4s ease;
}

.feature-box:hover::after {
    opacity: 0.3;
}

.feature-box[data-color="teal"] { 
    background: linear-gradient(135deg, var(--white) 0%, rgba(44, 62, 80, 0.02) 100%);
    border-left-color: var(--accent-slate);
}
.feature-box[data-color="orange"] { 
    background: linear-gradient(135deg, var(--white) 0%, rgba(52, 73, 94, 0.02) 100%);
    border-left-color: var(--accent-charcoal);
}
.feature-box[data-color="green"] { 
    background: linear-gradient(135deg, var(--white) 0%, rgba(30, 58, 138, 0.02) 100%);
    border-left-color: var(--accent-navy);
}
.feature-box[data-color="purple"] { 
    background: linear-gradient(135deg, var(--white) 0%, rgba(124, 45, 18, 0.02) 100%);
    border-left-color: var(--accent-burgundy);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    width: 60px;
    height: 60px;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(224, 131, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon::before {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(224, 131, 39, 0.15) 0%, transparent 70%);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
    background: var(--accent-slate);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

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

.story-content h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--white);
}

.values-section h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

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

.value-box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border-left: 2px solid var(--primary-orange);
    border-top: 1px solid var(--accent-slate);
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--primary-orange);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

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

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 450px;
}

.leader-card:hover {
    transform: translateY(-20px) rotateX(10deg) rotateY(-5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(224, 131, 39, 0.3);
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 131, 39, 0.05) 0%, rgba(10, 15, 26, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.leader-card:hover::before {
    opacity: 1;
}

.leader-photo {
    width: 180px;
    height: 180px;
    margin: 2rem auto 1.5rem;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    z-index: 3;
    transform: translateZ(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: none;
    overflow: hidden;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    top: 0;
    left: 0;
    background: transparent;
}

.leader-card:hover .leader-img {
    transform: scale(1.2);
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
}

.leader-card:hover .leader-photo {
    transform: translateZ(60px) scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(224, 131, 39, 0.4);
    overflow: visible;
}

.leader-photo::before {
    display: none;
}

.leader-card:hover .leader-photo::before {
    opacity: 0;
}

.leader-photo::after {
    display: none;
}

.leader-card:hover .leader-photo::after {
    display: none;
}

.leader-info {
    text-align: center;
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
    transition: all 0.6s ease;
}

.leader-card:hover .leader-info {
    transform: translateZ(40px);
}

.leader-info h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.6s ease;
}

.leader-card:hover .leader-info h3 {
    color: var(--primary-orange);
    transform: scale(1.05);
}

.leader-title {
    color: var(--accent-slate);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.6s ease;
}

.leader-card:hover .leader-title {
    color: var(--primary-orange);
    letter-spacing: 3px;
}

.leader-bio {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    transition: all 0.6s ease;
    opacity: 0.8;
}

.leader-card:hover .leader-bio {
    opacity: 1;
    color: var(--text-dark);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Donation Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto 5%;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-slate) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.close {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

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

.donation-option {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.donation-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.option-header h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.amount {
    color: var(--primary-orange);
    font-size: 1.3rem;
    font-weight: 700;
}

.donation-option p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.donate-option-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.donate-option-btn:hover {
    background: var(--accent-charcoal);
    transform: translateY(-2px);
}

.custom-donation {
    border-top: 2px solid var(--gray-medium);
    padding-top: 2rem;
}

.custom-donation h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.currency {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 700;
}

#customAmount {
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 1rem;
    width: 150px;
    text-align: center;
}

#customAmount:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(224, 131, 39, 0.1);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-orange);
}

.photo-placeholder {
    font-size: 2.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.photo-placeholder svg {
    width: 60%;
    height: 60%;
}

.team-member h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-light);
    font-weight: 600;
}

/* Ways to Help Section */
.ways-to-help-section {
    padding: 5rem 0;
    background: var(--white);
}

.ways-to-help-section h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

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

.help-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 2px solid var(--primary-orange);
    box-shadow: var(--shadow-card);
}

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

.help-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--primary-orange);
}

.help-icon svg {
    width: 100%;
    height: 100%;
}

.help-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.help-button {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.help-button:hover {
    background: var(--accent-charcoal);
    transform: translateY(-2px);
}

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

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

.impact-text h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.impact-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.image-placeholder {
    font-size: 8rem;
    opacity: 0.6;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    color: var(--primary-orange);
}

.image-placeholder .fa-icon {
    font-size: 8rem !important;
    width: 150px !important;
    height: 150px !important;
    color: var(--primary-orange) !important;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0 6rem 0;
    background: var(--accent-charcoal);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.large-cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.large-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0 12rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-burgundy) 100%);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.contact-details {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-navy) 0%, var(--primary-orange) 100%);
}

.contact-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-header h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.contact-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.elegant-form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(224, 131, 39, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-burgundy) 100%);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224, 131, 39, 0.3);
}

.submit-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(4px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange) 0%, var(--accent-burgundy) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--primary-orange);
    background: rgba(224, 131, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-content p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-navy) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.contact-cta > * {
    position: relative;
    z-index: 2;
}

.contact-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.crisis-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.crisis-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.crisis-button svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: var(--rich-brown);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
}

.footer-logo h3 {
    font-family: 'Sange', 'Libre Baskerville', serif;
    color: var(--primary-orange);
    margin: 0;
    font-size: 1.5rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-section h3 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Override fade-in animations for overview section */
.overview-section .fade-in,
.overview-section .fade-in.visible {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

@media (max-width: 1600px) {
    .hero-content {
        padding: 0 14rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .hero-content {
        padding: 0 6rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 2rem;
        justify-content: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        margin-left: 0;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cards {
        display: none;
    }

    .hero-card {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-container {
        padding: 0 2rem;
    }

    .features-grid,
    .values-grid,
    .team-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

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

    .impact-content {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 1rem;
    }
    
    .impact-text h2 {
        font-size: 2rem;
    }
    
    .impact-text p {
        font-size: 1rem;
    }
    
    .image-placeholder {
        font-size: 4rem;
        width: 80px;
        height: 80px;
    }
    
    .image-placeholder .fa-icon {
        font-size: 4rem !important;
        width: 80px !important;
        height: 80px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form,
    .contact-details {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    /* Mobile contact info container */
    .contact-info {
        align-items: center;
        gap: 2rem;
    }
    
    /* Mobile contact items - icon on top */
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-icon {
        margin: 0 auto 0.5rem;
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }
    
    .contact-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-content p {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-note {
        font-size: 0.85rem;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .overview-section {
        padding: 4rem 0 5rem;
    }
    
    /* About page mobile styles */
    .about-hero .hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .about-hero .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-img {
        height: 300px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .leader-card {
        height: auto;
        padding: 0;
    }
    
    .leader-card:hover {
        transform: translateY(-10px) rotateX(5deg) rotateY(-2deg);
    }
    
    .leader-photo {
        width: 140px;
        height: 140px;
        margin: 1.5rem auto 1rem;
    }
    
    .leader-card:hover .leader-photo {
        transform: translateZ(40px) scale(1.05);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .features-section {
        padding: 2rem 0;
        background: var(--white);
    }

    .hero-cards {
        display: none;
    }

    .hero-card {
        padding: 1.2rem 0.8rem;
        min-height: 100px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteer-grid,
    .partnership-grid,
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-box,
    .value-box,
    .help-card {
        padding: 2rem 1.5rem;
    }
    
    .volunteer-grid,
    .partnership-grid,
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 2rem;
        display: grid !important;
        width: 100%;
    }
    
    .volunteer-card,
    .partnership-card,
    .benefit-card {
        padding: 1rem;
        margin: 0 0.2rem;
        width: 100% !important;
        box-sizing: border-box;
        min-width: 0;
        max-width: 100%;
    }
    
    .volunteer-card h3,
    .partnership-card h3,
    .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .volunteer-card p,
    .partnership-card p,
    .benefit-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .volunteer-icon,
    .partnership-icon,
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .volunteer-icon .fa-icon,
    .partnership-icon .fa-icon,
    .benefit-icon .fa-icon {
        font-size: 1.5rem;
    }
    
    .volunteer-card ul,
    .partnership-card ul {
        font-size: 0.9rem;
    }
    
    .volunteer-card ul li,
    .partnership-card ul li {
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }
    
    .signup-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 1rem;
        display: grid !important;
    }
    
    .volunteer-form,
    .partnership-form {
        padding: 1.2rem;
        margin: 0 0.3rem;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .volunteer-hero {
        padding: 4rem 0 2rem;
    }
    
    .volunteer-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .volunteer-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .volunteer-section,
    .partnership-section,
    .benefits-section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Force mobile layout for volunteer grids */
@media (max-width: 768px) {
    .volunteer-grid,
    .partnership-grid,
    .benefits-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        width: 100% !important;
    }
    
    .volunteer-card,
    .partnership-card,
    .benefit-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .signup-content {
        grid-template-columns: 1fr !important;
        display: grid !important;
        width: 100% !important;
    }
    
    .volunteer-form,
    .partnership-form {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}

/* Font Awesome Icon Styling */
.fa-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: block;
}

/* Volunteer Page Styles */
.volunteer-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-navy) 100%);
    padding: 12rem 0 6rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.volunteer-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.volunteer-hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/youth-centre.jpg') center/cover;
    opacity: 0.1;
}

.volunteer-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%);
}

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

.volunteer-hero .hero-text {
    text-align: center;
    margin-left: 0;
    flex: none;
    max-width: 100%;
}

.volunteer-hero .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.volunteer-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.volunteer-section,
.partnership-section,
.benefits-section {
    padding: 6rem 0;
    background: var(--white);
}

.volunteer-grid,
.partnership-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.volunteer-card,
.partnership-card,
.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.volunteer-card:hover,
.partnership-card:hover,
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.volunteer-icon,
.partnership-icon,
.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    border-radius: 50%;
    color: var(--white);
}

.volunteer-icon .fa-icon,
.partnership-icon .fa-icon,
.benefit-icon .fa-icon {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
}

.volunteer-card h3,
.partnership-card h3,
.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.volunteer-card p,
.partnership-card p,
.benefit-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.volunteer-card ul,
.partnership-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.volunteer-card ul li,
.partnership-card ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.volunteer-card ul li::before,
.partnership-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.signup-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.signup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.volunteer-form,
.partnership-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

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

.elegant-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

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

.submit-button {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

.submit-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.card-icon .fa-icon,
.feature-icon .fa-icon,
.help-icon .fa-icon,
.approach-icon .fa-icon,
.value-icon .fa-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: block;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
} 