/* ============================================
   GACAMI LTD - ORIGINAL COLORS + FULL 3D
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(180deg, #f8faf8 0%, #edf5ed 50%, #e4ece4 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(45, 106, 79, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(45, 106, 79, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(45, 106, 79, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

/* ===== COLORS ===== */
:root {
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --bg-light: #f8faf8;
    --bg-dark: #1a3a2a;
    --text-dark: #2d3748;
    --text-light: #f8faf8;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(45, 106, 79, 0.15);
}

/* ===== HEADER ===== */
.site-header {
    background: white;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 4px 8px rgba(0,0,0,0.03),
        0 8px 16px rgba(0,0,0,0.02);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo {
    height: 42px;
    width: auto;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 6px rgba(45, 106, 79, 0.15));
    border-radius: 6px;
}

.brand:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(45, 106, 79, 0.25));
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s ease;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.site-nav {
    display: flex;
    gap: 2rem;
}

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

.site-nav a:hover {
    color: var(--primary);
}

.site-nav a.active {
    color: var(--primary);
}

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(160deg, #dce8dc 0%, #edf5ed 30%, #f8faf8 70%, #f0f6f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(0deg, #f8faf8 0%, transparent 100%);
    pointer-events: none;
}

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

.hero-copy {
    transform-style: preserve-3d;
}

.hero-copy .eyebrow {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero-copy h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.button.primary {
    background: var(--primary);
    color: white;
    box-shadow:
        0 2px 0 #1e5032,
        0 4px 8px rgba(45, 106, 79, 0.2),
        0 6px 16px rgba(45, 106, 79, 0.1);
}

.button.primary:hover {
    background: var(--primary-dark);
    box-shadow:
        0 2px 0 #0f3018,
        0 6px 12px rgba(45, 106, 79, 0.2);
}

.button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow:
        0 2px 0 rgba(45, 106, 79, 0.1),
        0 4px 8px rgba(45, 106, 79, 0.05);
}

.button.secondary:hover {
    background: var(--primary);
    color: white;
    box-shadow:
        0 2px 0 #1e5032,
        0 4px 10px rgba(45, 106, 79, 0.2);
}

.button.donate {
    background: #d97706;
    color: white;
    box-shadow:
        0 2px 0 #92400e,
        0 4px 8px rgba(217, 119, 6, 0.2),
        0 6px 16px rgba(217, 119, 6, 0.1);
}

.button.donate:hover {
    background: #b45309;
    box-shadow:
        0 2px 0 #78350f,
        0 6px 12px rgba(217, 119, 6, 0.25);
}

/* ===== HERO CARD ===== */
.hero-panel {
    position: relative;
}

.hero-card {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.04),
        0 8px 20px rgba(0,0,0,0.05),
        0 16px 36px rgba(0,0,0,0.04);
    position: relative;
    z-index: 2;
}

.panel-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.panel-icon {
    font-size: 2.5rem;
}

.hero-logo-3d {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 3px 8px rgba(45, 106, 79, 0.2));
    display: block;
}

.hero-card:hover .hero-logo-3d {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(45, 106, 79, 0.3));
}

.hero-card {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-card:hover {
}

.panel-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.panel-note {
    color: #718096;
    font-size: 0.9rem;
}

.panel-body {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.panel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.panel-stats strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary);
}

.panel-stats p {
    color: #718096;
    font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-light {
    background: linear-gradient(135deg, #ffffff 0%, #f6faf6 100%);
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45,106,79,0.08), transparent);
}

.section-dark {
    background: linear-gradient(160deg, #1a3a2a 0%, #0f2a1e 50%, #1a3a2a 100%);
    color: var(--text-light);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.section-dark h2 {
    color: white;
}

.section-dark p {
    color: #cbd5e0;
}

.section-alt {
    background: linear-gradient(135deg, #f8faf8 0%, #f0f6f0 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45,106,79,0.08), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.section-header p {
    color: #4a5568;
    font-size: 1.1rem;
}

.section-header-logo {
    display: block;
    height: 64px;
    width: auto;
    margin: 0 auto 1.25rem;
}

.section-header.light h2 {
    color: white;
}

.section-header.light p {
    color: #cbd5e0;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-copy {
}

.about-copy p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow:
        0 2px 4px rgba(0,0,0,0.03),
        0 4px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.highlight-card:hover {
    box-shadow:
        0 4px 8px rgba(0,0,0,0.04),
        0 8px 18px rgba(45, 106, 79, 0.07);
}

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

.highlight-card p {
    color: #4a5568;
}

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

.feature-card {
    background: linear-gradient(135deg, #f8faf8 0%, #f0f6f0 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.02),
        0 4px 16px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow:
        0 4px 8px rgba(0,0,0,0.03),
        0 8px 16px rgba(45, 106, 79, 0.05);
}

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

.feature-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* ===== MISSION & VISION ===== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.1),
        0 8px 28px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
    box-shadow:
        0 6px 14px rgba(0,0,0,0.1),
        0 12px 28px rgba(0,0,0,0.06);
    border-color: rgba(255,255,255,0.15);
}

.mv-card h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #cbd5e0;
    line-height: 1.8;
}

/* ===== IMPACT ===== */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.03),
        0 6px 12px rgba(0,0,0,0.04),
        0 12px 28px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease;
}

.impact-card:hover {
    box-shadow:
        0 4px 8px rgba(0,0,0,0.04),
        0 8px 18px rgba(45, 106, 79, 0.06);
}

.impact-card .impact-value {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    min-height: 60px;
}

.impact-card .impact-label {
    display: block;
    color: #4a5568;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Counter animation */
.impact-value.counting {
    color: var(--primary-light);
}

@keyframes counter-pulse {
    0% { text-shadow: 0 0 0 rgba(45, 106, 79, 0); }
    50% { text-shadow: 0 0 20px rgba(45, 106, 79, 0.15); }
    100% { text-shadow: 0 0 0 rgba(45, 106, 79, 0); }
}

.impact-value.counting {
    animation: counter-pulse 0.8s ease-in-out;
}

/* ===== PROGRAMS ===== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.03),
        0 6px 16px rgba(0,0,0,0.04),
        0 12px 28px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s ease;
}

.program-card:hover {
    box-shadow:
        0 4px 8px rgba(0,0,0,0.04),
        0 8px 18px rgba(45, 106, 79, 0.06);
}

.program-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

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

.program-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PARTNERS ===== */
/* ===== PROGRAMS PHOTO ===== */
.programs-photo {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.03),
        0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.4);
}

.programs-photo img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== PARTNERS MARQUEE ===== */
.partners-marquee-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.partners-marquee-track {
    display: flex;
    width: max-content;
    animation: partners-scroll 45s linear infinite;
}

.partners-marquee-wrap:hover .partners-marquee-track {
    animation-play-state: paused;
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }
    to {
        /* every card (including the last one of each set) carries the same
           margin-right, so the seam between the two identical sets is spaced
           exactly like every other gap -- translating by -50% lands precisely
           on the start of the second set with no jump/flicker */
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .programs-photo {
        margin-top: 2rem;
    }
}

.section-partners {
    background: linear-gradient(135deg, #ffffff 0%, #f6faf6 50%, #f0f6f0 100%);
    padding: 6rem 0;
    position: relative;
}

.section-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45,106,79,0.08), transparent);
}

.partner-card {
    background: linear-gradient(145deg, #f8faf8 0%, #f0f6f0 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 0 0 260px;
    width: 260px;
    margin-right: 3rem;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.03),
        0 10px 40px rgba(0,0,0,0.06),
        0 2px 10px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition: box-shadow 0.4s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.3);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(45,106,79,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.partner-card.visible {
}

.partner-card:hover {
    box-shadow:
        0 8px 16px rgba(45, 106, 79, 0.1),
        0 25px 50px rgba(45, 106, 79, 0.2),
        0 10px 30px rgba(0,0,0,0.1);
}

.partner-card:nth-child(2):hover {
}

.partner-card:nth-child(3):hover {
}

.partner-logo {
    width: 100%;
    max-width: 240px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.partner-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.06));
}

.partner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: filter 0.4s ease;
}

/* ===== MINISTRY 3D LOGO ===== */
.ministry-logo-wrap {
    perspective: 1200px;
}

.ministry-3d {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    animation: ministry-float 4s ease-in-out infinite;
}

@keyframes ministry-float {
    0%, 100% { transform: rotateY(-2deg) rotateX(1deg); }
    50% { transform: rotateY(2deg) rotateX(-1deg); }
}

.ministry-text {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 4px;
    text-transform: lowercase;
    color: #1a3a2a;
    position: relative;
    transition: text-shadow 0.4s ease;
    text-shadow:
        0 1px 0 #2d6a4f,
        0 2px 0 #25603e,
        0 3px 0 #1e5032,
        0 4px 0 #174026,
        0 6px 8px rgba(0,0,0,0.2),
        0 0 20px rgba(45, 106, 79, 0.15);
}

.ministry-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #f5d742;
    transform: translateZ(-8px) translateX(2px) translateY(2px);
    text-shadow: none;
    opacity: 0.6;
}

.ministry-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    color: #b8860b;
    transform: translateZ(-16px) translateX(4px) translateY(4px);
    text-shadow: none;
    opacity: 0.3;
}

.ministry-sub {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #b8860b;
    text-transform: uppercase;
    margin-top: 2px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.partner-card:hover .ministry-3d {
    animation: ministry-hover 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes ministry-hover {
    0% { transform: rotateY(-2deg) rotateX(1deg); }
    100% { transform: rotateY(0deg) rotateX(0deg) scale(1.04); }
}

.partner-card:hover .ministry-text {
    text-shadow:
        0 1px 0 #2d6a4f,
        0 2px 0 #25603e,
        0 3px 0 #1e5032,
        0 4px 0 #174026,
        0 6px 0 #0f3018,
        0 8px 12px rgba(0,0,0,0.3),
        0 0 30px rgba(45, 106, 79, 0.25);
}

.partner-card:hover .ministry-sub {
    color: #f5d742;
    text-shadow: 0 0 12px rgba(245, 215, 66, 0.4);
}

/* ===== LOCAL GOVERNMENT 3D LOGO ===== */
.lg-logo-wrap {
    perspective: 1200px;
}

.lg-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    animation: lg-float 5s ease-in-out infinite;
}

@keyframes lg-float {
    0%, 100% { transform: rotateY(-2deg) rotateX(1deg); }
    50% { transform: rotateY(2deg) rotateX(-1deg); }
}

.lg-shield {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f5d742, #b8860b);
    padding: 10px 22px;
    border-radius: 16px 16px 20px 20px;
    position: relative;
    box-shadow:
        0 2px 0 #a0780a,
        0 4px 0 #8b6914,
        0 6px 12px rgba(0,0,0,0.2),
        inset 0 -2px 0 rgba(255,255,255,0.15);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
    min-width: 130px;
    min-height: 72px;
}

.lg-amuria {
    font-size: 1.3rem;
    font-weight: 900;
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 5px;
    color: #1a3a2a;
    text-shadow:
        0 1px 0 #2d6a4f,
        0 2px 3px rgba(0,0,0,0.2);
    position: relative;
}

.lg-amuria::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #0f3018;
    transform: translateZ(-6px) translateX(1px) translateY(1px);
    opacity: 0.5;
}

.lg-divider {
    width: 40px;
    height: 2px;
    background: rgba(26, 58, 42, 0.4);
    margin: 1px 0;
    border-radius: 1px;
}

.lg-local {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.partner-card:hover .lg-3d {
    animation: lg-hover 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes lg-hover {
    0% { transform: rotateY(-2deg) rotateX(1deg); }
    100% { transform: rotateY(0deg) rotateX(0deg) scale(1.04); }
}

.partner-card:hover .lg-shield {
    box-shadow:
        0 2px 0 #a0780a,
        0 4px 0 #8b6914,
        0 8px 0 #6b520e,
        0 12px 24px rgba(0,0,0,0.35),
        inset 0 -2px 0 rgba(255,255,255,0.15);
}

.partner-card:hover .lg-amuria {
    text-shadow:
        0 1px 0 #2d6a4f,
        0 3px 6px rgba(0,0,0,0.3);
}

.partner-card:hover .lg-local {
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.partner-card h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.partner-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Partner entrance animation */
.partner-card {
    opacity: 1;
    transform: none;
    animation: partner-enter 0.6s ease forwards;
}

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

@keyframes partner-enter {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8faf8 100%);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.02),
        0 4px 20px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition: box-shadow 0.3s ease;
}

.team-card:hover {
    box-shadow:
        0 4px 8px rgba(0,0,0,0.03),
        0 8px 18px rgba(45, 106, 79, 0.06);
}

.team-media {
    margin-bottom: 1rem;
    transform-style: preserve-3d;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 4px 12px rgba(0,0,0,0.03);
}

.team-photo.placeholder {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.team-card h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.team-position {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #4a5568;
    font-size: 0.85rem;
    line-height: 1.5;
}

.team-card a {
    color: var(--primary);
    text-decoration: none;
}

/* ===== CONTACT ===== */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f6faf6 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45,106,79,0.08), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.03),
        0 4px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow:
        0 4px 8px rgba(45, 106, 79, 0.04),
        0 8px 18px rgba(45, 106, 79, 0.05);
}

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

.contact-card p {
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    display: inline-block;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.03),
        0 6px 16px rgba(0,0,0,0.04),
        0 12px 32px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow:
        0 4px 8px rgba(45, 106, 79, 0.04),
        0 8px 20px rgba(45, 106, 79, 0.05);
}

.contact-form h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.02),
        inset 0 1px 3px rgba(0,0,0,0.03);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow:
        0 2px 4px rgba(45, 106, 79, 0.08),
        0 4px 12px rgba(45, 106, 79, 0.06),
        inset 0 1px 3px rgba(0,0,0,0.03);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-grid h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-grid p {
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-grid ul li {
    margin-bottom: 0.5rem;
}

.footer-grid ul a {
    color: #cbd5e0;
    text-decoration: none;
    display: inline-block;
}

.footer-grid ul a:hover {
    color: white;
}

.footer-grid a {
    color: #cbd5e0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-grid a:hover {
    color: #cbd5e0;
}

.footer-note {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }
}

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

    .site-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 0 0 12px 12px;
    }

    .site-nav.active {
        display: flex;
    }

    .about-grid,
    .mission-vision-grid,
    .contact-grid,
    .impact-grid,
    .team-grid,
    .feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .partner-card {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .mv-card {
        animation: none;
    }
}
