/* ================================================
   MANEE FOUNDATION — MASTER STYLESHEET
   Version 1.0 | maneefoundation.org
   ================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS VARIABLES --- */
:root {
    --saffron:     #E8521A;
    --saffron-lt:  #FDF0EA;
    --saffron-dk:  #B33D10;
    --green:       #1A6B3C;
    --green-lt:    #E8F5EE;
    --green-dk:    #0F4525;
    --gold:        #C8951A;
    --gold-lt:     #FDF6E3;
    --navy:        #1A2B4A;
    --navy-lt:     #EEF1F7;
    --white:       #FFFFFF;
    --off-white:   #FAF9F7;
    --gray-100:    #F5F4F1;
    --gray-200:    #E8E6E1;
    --gray-400:    #A09D96;
    --gray-700:    #4A4844;
    --gray-900:    #1C1B19;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width:   1200px;
    --section-pad: 5rem 1.5rem;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--gray-700); line-height: 1.8; }

.section-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.text-center { text-align: center; }

/* --- LAYOUT --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: var(--section-pad); }
.section-alt { background: var(--off-white); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--saffron);
    color: var(--white);
    border-color: var(--saffron);
}
.btn-primary:hover {
    background: var(--saffron-dk);
    border-color: var(--saffron-dk);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--saffron);
    border-color: var(--saffron);
}
.btn-outline:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-green:hover {
    background: var(--green-dk);
    border-color: var(--green-dk);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.navbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--saffron);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.navbar-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo-name { color: var(--navy); }

.navbar-logo-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo-tag { color: var(--gray-400); }

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--saffron);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-links a:hover { color: var(--white); }
.navbar-links a:hover::after { transform: scaleX(1); }

.navbar.scrolled .navbar-links a { color: var(--gray-700); }
.navbar.scrolled .navbar-links a:hover { color: var(--saffron); }

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.navbar-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-hamburger span { background: var(--navy); }

/* --- HERO --- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, #2A3F6B 50%, #1A4A35 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--saffron);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: #F4A261;
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- HERO CARD STACK (fixed no-overlap layout) --- */
.hero-card-stack {
    position: relative;
    width: 517px;
    height: 500px;
}

.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: white;
}

/* Main card — centred in the stack */
.hero-card-main {
    width: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.12);
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

/* Float card 1 — top-right, clear of main card */
.hero-card-float-1 {
    width: 175px;
    top: 10px;
    right: 0px;
    font-size: 0.85rem;
    z-index: 2;
    animation: float1 4s ease-in-out infinite;
}

/* Float card 2 — bottom-left, clear of main card */
.hero-card-float-2 {
    width: 175px;
    bottom: 58px;
    left: 0px;
    font-size: 0.85rem;
    z-index: 2;
    animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.hero-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-card-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.hero-card-badge {
    display: inline-block;
    background: var(--saffron);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--navy);
    padding: 1rem 1.5rem;
}

.trust-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 500;
}

.trust-item span:first-child {
    color: var(--gold);
    font-size: 1rem;
}

/* --- STORY SECTION --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-image-wrap {
    position: relative;
}

.story-image-main {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--saffron-lt), var(--green-lt));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.story-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--saffron);
    color: white;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
}

.story-image-badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.story-image-badge-text {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

.story-content .section-label { text-align: left; }
.story-content h2 { text-align: left; margin-bottom: 1.25rem; }

.story-quote {
    background: var(--green-lt);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--green-dk);
    font-size: 1.05rem;
    line-height: 1.7;
}

.story-directors {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.director-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gray-100);
    border-radius: 50px;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
}

.director-avatar {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.director-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
}

.director-role {
    font-size: 0.72rem;
    color: var(--gray-400);
}

/* --- ECOSYSTEM SECTION --- */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ecosystem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color, var(--saffron));
    transform: scaleX(0);
    transition: var(--transition);
}

.ecosystem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.ecosystem-card:hover::before { transform: scaleX(1); }

.ecosystem-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    background: var(--card-bg, var(--saffron-lt));
}

.ecosystem-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.ecosystem-card p {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.ecosystem-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--card-color, var(--saffron));
    transition: var(--transition);
}

.ecosystem-link:hover { gap: 0.7rem; }

.ecosystem-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    background: var(--card-bg, var(--saffron-lt));
    color: var(--card-color, var(--saffron));
}

/* Card colors */
.card-animal  { --card-color: #E8521A; --card-bg: #FDF0EA; }
.card-village { --card-color: #1A6B3C; --card-bg: #E8F5EE; }
.card-solar   { --card-color: #C8951A; --card-bg: #FDF6E3; }
.card-justice { --card-color: #1A2B4A; --card-bg: #EEF1F7; }

/* --- IMPACT SECTION --- */
.impact-section {
    background: linear-gradient(135deg, var(--navy), #2A3F6B);
    color: white;
    padding: var(--section-pad);
}

.impact-section .section-label { color: #F4A261; }
.impact-section h2 { color: white; }
.impact-section .section-desc { color: rgba(255,255,255,0.7); }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.impact-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.impact-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.impact-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

/* --- DONATION SECTION --- */
.donation-section {
    background: var(--saffron);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.donation-section::before {
    content: '❤';
    position: absolute;
    font-size: 20rem;
    opacity: 0.04;
    right: -2rem;
    top: -3rem;
    line-height: 1;
}

.donation-section .section-label { color: rgba(255,255,255,0.8); }
.donation-section h2 { color: white; }
.donation-section .section-desc { color: rgba(255,255,255,0.85); }

.donation-amounts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.amount-btn {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.amount-btn:hover,
.amount-btn.active {
    background: white;
    color: var(--saffron);
    border-color: white;
}

.donation-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.donation-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
}

.donation-input::placeholder { color: rgba(255,255,255,0.65); }
.donation-input:focus { border-color: white; background: rgba(255,255,255,0.2); }

.donation-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    text-align: center;
}

/* --- COMPLIANCE SECTION --- */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.compliance-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.compliance-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}

.compliance-icon {
    width: 44px;
    height: 44px;
    background: var(--green-lt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.compliance-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.compliance-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--saffron-lt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
}

.contact-form {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-900);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(232,82,26,0.1);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* --- FOOTER --- */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 4rem 1.5rem 2rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.footer-logo-tag {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--saffron);
    color: white;
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--saffron); }

.footer-bottom {
    max-width: var(--max-width);
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
    font-size: 0.82rem;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* --- ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE MENU --- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.mobile-menu a:hover { color: var(--saffron); }

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ecosystem-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .compliance-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 3.5rem 1.25rem; }
    .navbar-links, .navbar-cta .btn { display: none; }
    .navbar-hamburger { display: flex; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
    .donation-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-bar-inner { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .impact-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .donation-amounts { gap: 0.75rem; }
    .amount-btn { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
}