/* ===== GLOBAL RESET & VARIABLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,400&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --primary: #14C177;
    --primary-dark: #0fa565;
    --primary-light: #e6f9f0;
    --navy: #001d38;
    --navy-dark: #000B1C;
    --navy-mid: #002D5B;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --off-white: #f8faf9;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-body: 'Nunito Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.3;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a,
.top-bar-left span {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.top-bar-left a:hover {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* ===== HEADER / NAVBAR ===== */
.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #1ED98A, var(--primary));
    opacity: 0.6;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo img.logo-svg {
    height: 44px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 20px;
}

.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu a.btn {
    background: linear-gradient(135deg, var(--primary), #0fa565);
    color: white;
    padding: 10px 24px;
    margin-left: 8px;
    box-shadow: 0 4px 15px rgba(20, 193, 119, 0.3);
}

.nav-menu a.btn::after {
    display: none;
}

.nav-menu a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(20, 193, 119, 0.45);
    background: linear-gradient(135deg, #0fa565, var(--primary));
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 193, 119, 0.35);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 29, 56, 0.75), rgba(0, 11, 28, 0.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 80px 0;
}

.hero-content .subtitle {
    display: inline-block;
    background: rgba(20, 193, 119, 0.2);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content h1 em {
    color: var(--primary);
    font-style: normal;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(20, 193, 119, 0.08);
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(20, 193, 119, 0.05);
}

.page-banner h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--primary);
    font-size: 14px;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
    padding: 80px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.action-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.action-card.featured {
    background: var(--primary);
    color: var(--white);
}

.action-card.featured::before {
    background: var(--white);
}

.action-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.action-card.featured .icon {
    background: rgba(255, 255, 255, 0.2);
}

.action-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.action-card.featured h3 {
    color: var(--white);
}

.action-card p {
    color: var(--text-light);
    font-size: 15px;
}

.action-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== ABOUT SECTION (Homepage) ===== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-images .img-main {
    width: 85%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-images .img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-content .label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.about-content ul {
    margin-bottom: 28px;
}

.about-content ul li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

.about-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: 80px 0;
    background: var(--off-white);
}

.project-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-card .card-img {
    height: 220px;
    overflow: hidden;
}

.project-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .card-img img {
    transform: scale(1.05);
}

.project-card .card-body {
    padding: 24px;
}

.project-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.project-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.project-card .progress-bar {
    background: #e9ecef;
    border-radius: 50px;
    height: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.project-card .progress-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #0fa565);
    border-radius: 50px;
    transition: width 1s ease;
}

.project-card .goal-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.project-card .goal-info strong {
    color: var(--navy);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 80px 0;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .card-img img {
    transform: scale(1.05);
}

.blog-card .card-body {
    padding: 24px;
}

.blog-card .date {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    gap: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(20, 193, 119, 0.1);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(20, 193, 119, 0.08);
}

.cta-section h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #000d1f 0%, #001225 50%, #000a18 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    position: relative;
}

.footer-wave {
    position: relative;
    top: -1px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.footer-col .footer-logo img {
    height: 40px;
    width: auto;
}

.footer-col ul li {
    padding: 5px 0;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '→';
    font-size: 11px;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
    transform: translateX(-6px);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 0;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    align-items: flex-start;
}

.footer-contact-item .fc-icon {
    width: 34px;
    height: 34px;
    background: rgba(20, 193, 119, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.newsletter-form {
    display: flex;
    margin-top: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius) 0 0 var(--radius);
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--primary), #0fa565);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #0fa565, var(--primary));
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0;
}

.footer-bottom {
    padding: 22px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(20, 193, 119, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== ABOUT PAGE ===== */
.about-founder {
    padding: 80px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary-light);
    box-shadow: var(--shadow-lg);
    margin: 0 auto 20px;
}

.founder-image h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.founder-image .role {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.founder-bio h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.founder-bio p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 15px;
}

.founder-message {
    padding: 80px 0;
    background: var(--off-white);
}

.message-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-box .msg-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 32px;
    color: var(--white);
}

.message-box blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    line-height: 1.6;
}

.message-box p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

/* ===== PROGRAMS LIST ===== */
.programs-list {
    list-style: none !important;
}

.programs-list li {
    padding: 10px 0 10px 32px !important;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.programs-list li strong {
    color: var(--navy);
}

/* ===== PROJECT DETAIL ===== */
.project-detail {
    padding: 60px 0;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.project-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

.project-content img {
    border-radius: var(--radius-lg);
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.project-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 24px;
}

.sidebar-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--navy);
}

.goal-stat {
    margin-bottom: 16px;
}

.goal-stat label {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.goal-stat .amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    font-family: var(--font-heading);
}

.goal-stat .amount.green {
    color: var(--primary);
}

/* ===== EVENTS ===== */
.events-list {
    padding: 80px 0;
}

.event-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.event-card .event-img {
    height: 100%;
    min-height: 240px;
}

.event-card .event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card .event-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-card .event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.event-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.event-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ===== EVENT DETAIL ===== */
.event-detail {
    padding: 60px 0;
}

.event-detail-content {
    max-width: 850px;
    margin: 0 auto;
}

.event-detail-content .event-hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.event-detail-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.event-detail-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===== BLOG DETAIL ===== */
.blog-detail {
    padding: 60px 0;
}

.blog-detail-content {
    max-width: 850px;
    margin: 0 auto;
}

.blog-detail-content .blog-hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.blog-detail-content .meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-detail-content .meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.blog-detail-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
}

.blog-detail-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 18px;
    padding-left: 0;
}

.blog-detail-content ul li,
.blog-detail-content ol li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
}

.blog-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.blog-detail-content ol {
    counter-reset: ol-counter;
}

.blog-detail-content ol li::before {
    counter-increment: ol-counter;
    content: counter(ol-counter) '.';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-item .ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item .ci-icon.red {
    background: #fde8e8;
    color: #e74c3c;
}

.contact-item .ci-icon.pink {
    background: #fce4ec;
    color: #e91e63;
}

.contact-item .ci-icon.purple {
    background: #ede7f6;
    color: #7c4dff;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 193, 119, 0.12);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ===== DONATE PAGE ===== */
.donate-section {
    padding: 80px 0;
}

.donate-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.donate-form-wrapper h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 8px;
}

.donate-form-wrapper .donate-sub {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 15px;
}

.currency-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.currency-toggle .curr-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.currency-toggle .curr-btn.active {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.exchange-rate {
    background: var(--primary-light);
    padding: 12px 18px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.donate-heart {
    text-align: center;
    margin-top: 24px;
    font-size: 15px;
    color: var(--text-light);
}

/* ===== STATS COUNTER ===== */
.stats-section {
    padding: 60px 0;
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item .number {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-top: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1001;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .action-cards {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-cards,
    .blog-cards {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-image {
        order: -1;
    }

    .project-detail-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .project-cards,
    .blog-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .top-bar-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}