:root {
    /* GAINdm Mother Company Colors */
    --clr-navy: #0B1F3A;
    --clr-orange: #E67E22;
    --clr-orange-hover: #D35400;
    
    --clr-white: #FFFFFF;
    --clr-ivory: #F9FAFB;
    --clr-gray-light: #F3F4F6;
    --clr-gray-border: #E5E7EB;
    --clr-text: #334155;
    --clr-text-light: #64748B;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 20px 40px -15px rgba(11, 31, 58, 0.08);
    --shadow-hover: 0 30px 60px -20px rgba(11, 31, 58, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-navy);
    line-height: 1.2;
}

.serif {
    font-family: var(--font-serif);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

.section {
    padding: 8rem 0;
}

.bg-white { background-color: var(--clr-white); }
.bg-light { background-color: var(--clr-ivory); }
.bg-navy { 
    background-color: var(--clr-navy); 
    color: var(--clr-white);
}

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

/* Utilities */
.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--clr-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.badge.dark {
    background: rgba(11, 31, 58, 0.05);
    color: var(--clr-navy);
    border: 1px solid rgba(11, 31, 58, 0.1);
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--clr-orange);
    margin: 1.5rem 0;
}

.accent-line.center {
    margin: 1.5rem auto;
}

.lead-text {
    font-size: 1.35rem;
    color: var(--clr-navy);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Typography Utility */
.section-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--clr-navy);
}

.section-header.light .section-title,
.section-header.light p {
    color: var(--clr-white);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--clr-text-light);
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    border-radius: 4px; /* More corporate */
}

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

.btn-primary:hover {
    background-color: var(--clr-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}

.btn-donate {
    background-color: var(--clr-orange);
    color: var(--clr-white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-donate:hover {
    background-color: var(--clr-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--clr-white);
    padding: 0.5rem 1rem; /* Smaller for lang toggle */
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--clr-white);
    color: var(--clr-navy);
}

.dark-btn {
    border-color: var(--clr-navy);
    color: var(--clr-navy);
    padding: 1rem 2.5rem;
}

.dark-btn:hover {
    background: var(--clr-navy);
    color: var(--clr-white);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav.scrolled {
    background: var(--clr-white);
    padding: 1rem 0;
    border-bottom-color: var(--clr-gray-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav.scrolled .logo {
    color: var(--clr-navy);
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--clr-white);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

nav.scrolled .nav-links a {
    color: var(--clr-navy);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--clr-orange);
}

nav.scrolled .btn-outline {
    border-color: var(--clr-gray-border);
    color: var(--clr-navy);
}

nav.scrolled .btn-outline:hover {
    background: var(--clr-navy);
    color: var(--clr-white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-white);
    cursor: pointer;
}

nav.scrolled .mobile-menu-btn {
    color: var(--clr-navy);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    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 center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 31, 58, 0.9) 0%, rgba(11, 31, 58, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 5%;
}

.hero-text-box {
    max-width: 800px;
}

.hero-text-box .badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--clr-orange);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--clr-white);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-ivory);
    margin-bottom: 3rem;
    max-width: 600px;
    opacity: 0.9;
}

/* ===== PREMIUM ABOUT SECTION ===== */
#about {
    background: #f8fafd; /* Very soft cool tint */
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

.about-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text-center {
    max-width: 850px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.about-text-center p {
    font-size: 1.15rem;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.mv-card {
    background: var(--clr-white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mv-card.mission::before { background: var(--clr-navy); }
.mv-card.vision::before { background: var(--clr-orange); }
.mv-card:hover::before { opacity: 0.25; }

.mv-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.mv-card.mission .mv-icon-wrapper {
    background: rgba(11, 31, 58, 0.05);
    color: var(--clr-navy);
}

.mv-card.vision .mv-icon-wrapper {
    background: rgba(230, 126, 34, 0.1);
    color: var(--clr-orange);
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--clr-navy);
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--clr-text-light);
}

.values-container {
    background: var(--clr-white);
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
    margin-top: 2rem;
    border: 1px solid rgba(0,0,0,0.02);
}

.values-title {
    text-align: center;
    font-size: 1.1rem;
    color: var(--clr-navy);
    margin-bottom: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--clr-orange);
    transition: var(--transition);
}

.value-item span {
    font-weight: 600;
    color: var(--clr-navy);
    font-size: 1.1rem;
}

.value-item:hover i {
    transform: scale(1.15) translateY(-5px);
}

.glass-card .team-desc {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* About Section - Editorial Grid */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.editorial-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    padding: 3rem;
    border-radius: 4px;
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.stat-box.navy-bg { background-color: var(--clr-navy); }
.stat-box.orange-bg { background-color: var(--clr-orange); }

.stat-box i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.stat-box h3 {
    color: var(--clr-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-box p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.values-banner {
    padding: 3rem;
    background: var(--clr-ivory);
    border: 1px solid var(--clr-gray-border);
    border-radius: 4px;
    margin-top: 2rem;
}

/* Projects Section - NGO Grid */
.projects-ngo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.ngo-card {
    background: var(--clr-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--clr-gray-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.ngo-image {
    position: relative;
    width: 100%;
    height: 220px;
}

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

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

/* Scanner Animation for Doctor QR */
.scanner-frame {
    position: relative;
    overflow: hidden;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clr-orange);
    box-shadow: 0 0 10px var(--clr-orange), 0 0 20px var(--clr-orange);
    opacity: 0.8;
    z-index: 5;
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.ngo-image .project-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--clr-white);
    color: var(--clr-navy);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 0;
}

.ngo-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.ngo-content p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.more-text {
    display: none;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--clr-gray-border);
}

.ngo-card.expanded .more-text {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

.ngo-link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    color: var(--clr-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ngo-link:hover {
    color: var(--clr-orange-hover);
    gap: 0.8rem;
}

/* Get Involved Section */
.get-involved {
    background: var(--clr-ivory);
    border-top: 1px solid var(--clr-gray-border);
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

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

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--clr-orange);
    transition: var(--transition);
}

.impact-item:hover .impact-icon {
    background: var(--clr-orange);
    color: var(--clr-white);
    transform: translateY(-5px);
}

.impact-item h4 {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.impact-item p {
    color: rgba(255,255,255,0.7);
}

/* Team Section */
/* Futuristic Team Section */
.bg-futuristic {
    background: radial-gradient(circle at top right, #112d52, #0B1F3A);
    position: relative;
    overflow: hidden;
    padding-bottom: 5rem;
}

.bg-futuristic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.futuristic-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--clr-white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(230, 126, 34, 0.2);
    border-color: rgba(230, 126, 34, 0.4);
}

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

.glass-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.4s ease;
}

.glass-card:hover .glass-photo {
    border-color: var(--clr-orange);
    box-shadow: 0 0 30px rgba(230, 126, 34, 0.5);
}

.glass-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.glass-card:hover .glass-photo img {
    transform: scale(1.1);
}

.glass-card h4 {
    font-size: 1.4rem;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.glass-card .team-role {
    color: var(--clr-orange) !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.glass-card .team-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.team-card p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.team-card-horizontal {
    display: flex;
    align-items: center;
    background: var(--clr-navy);
    color: var(--clr-white);
    border-radius: 12px;
    padding: 3rem;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-card-horizontal .team-photo {
    width: 200px;
    height: 200px;
    margin: 0;
    flex-shrink: 0;
    border-color: var(--clr-orange);
    border-width: 4px;
}

.team-info {
    text-align: left;
}

.team-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--clr-white);
}

.team-role {
    color: var(--clr-orange) !important;
    font-weight: 600;
    margin-bottom: 1rem !important;
    font-size: 1.1rem;
}

.team-bio {
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.6;
    font-size: 1rem;
}

.team-card {
    background: var(--clr-ivory);
    border: 1px solid var(--clr-gray-border);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: rgba(230, 126, 34, 0.3);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--clr-orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: var(--clr-white);
}

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

.team-card.main-leader .team-photo {
    width: 150px;
    height: 150px;
    border-color: var(--clr-white);
}

.team-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.team-card p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.team-card p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--clr-navy);
    color: var(--clr-white);
    padding: 6rem 0 2rem 0;
    text-align: center;
}

.footer-logo-large {
    height: 100px;
    margin: 0 auto 1.5rem auto;
    display: block;
    object-fit: contain;
}

.footer-brand h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--clr-white);
}

.initiative-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-nav-links a {
    color: var(--clr-white);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav-links a:hover {
    color: var(--clr-orange);
}

.footer-contact-info {
    margin-bottom: 3rem;
}

.footer-contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.footer-contact-info a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--clr-orange);
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.social-icons-large a {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
}

.social-icons-large a:hover {
    background: var(--clr-orange);
    border-color: var(--clr-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: var(--clr-orange);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }
    
    .ngo-card {
        margin-bottom: 2rem;
    }
    
    .footer-nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.2rem; }
    .section { padding: 4rem 0; }
    .hero { min-height: 500px; height: 60vh; }
    .ngo-image { height: 180px; }
    
    .team-card-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .team-info {
        text-align: center;
    }

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