/* --- RESET & VARIABLES --- */
:root {
    --primary-blue: #0f2942;
    --secondary-blue: #1a3c5a;
    --accent-yellow: #f4c416;
    --accent-yellow-hover: #dcb013;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f9fbfd;
    --white: #ffffff;
    --border-color: #e5e5e5;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

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

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--accent-yellow-hover);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* --- NAVIGATION --- */
.navbar {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--primary-blue);
}

.logo .dot {
    color: var(--accent-yellow);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link-btn {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 14px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-blue);
    transition: 0.3s;
}

/* --- HERO SECTION --- */
.hero {
    background-color: #f4f7fa;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    position: relative;
    z-index: 1;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--accent-yellow);
    opacity: 0.5;
    z-index: -1;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-strip {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    flex-wrap: wrap;
}

.trust-item i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.img-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-yellow);
    border-radius: 10px;
    z-index: -1;
}

/* --- SECTION GENERAL --- */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.separator {
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 0 auto;
}

/* --- FOCUS AREAS --- */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.focus-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: 0.3s;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-yellow);
}

.icon-box {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.focus-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.focus-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* --- IMPACT SECTION --- */
.impact-section {
    background-color: var(--primary-blue);
    padding: 80px 0;
    color: var(--white);
}

.light-text h2 {
    color: var(--white);
}

.light-text p {
    color: rgba(255,255,255,0.7);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: 40px;
}

.impact-item {
    padding: 20px;
}

.counter, .suffix {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-yellow);
    display: inline-block;
}

.impact-item p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

/* --- PROCESS SECTION --- */
.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Connecting line */
.process-flow::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 20px;
    border: 4px solid var(--white);
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.step p {
    font-size: 14px;
    color: var(--text-gray);
}

/* --- STORIES SECTION --- */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.story-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.story-img {
    height: 200px;
    position: relative;
}

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

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
    line-height: 1.3;
}

.story-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 8px;
}

/* --- TRANSPARENCY SECTION --- */
.transparency-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

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

.text-side h3 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 20px;
}

.text-side p {
    font-size: 14px;
    color: var(--text-gray);
}

.doc-links {
    display: flex;
    gap: 15px;
}

.doc-btn {
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doc-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: #f4f7fa;
}

.doc-btn i {
    color: #e74c3c; /* PDF red color hint */
}

/* --- FOOTER --- */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    display: block;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-col ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--accent-yellow);
    border: none;
    padding: 0 15px;
    color: var(--primary-blue);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-btns, .trust-strip {
        justify-content: center;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-flow::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid #eee;
        display: none;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-actions .btn {
        display: none; /* Hide buttons on mobile header to save space */
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .transparency-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .doc-links {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
}
