/* Global Styles */
:root {
    --primary-color: #2E8B57;
    /* Sea Green */
    --primary-dark: #246B42;
    --secondary-color: #008080;
    /* Teal */
    --accent-color: #FFD700;
    /* Gold */
    --text-color: #333;
    --text-light: #666;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --font-family: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 0.5rem;
    --ostional-blue: #1e3a5f;
}

.text-ostional {
    color: var(--ostional-blue) !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

button {
    font-family: inherit;
}

/* Header & Navigation */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 60px !important;
    padding-right: 60px !important;
    width: 100%;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.025em;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.donate-btn {
    background: var(--accent-color);
    color: #333;
    /* Better contrast on gold */
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    /* Ensure no underline */
}

.donate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    background: #ffdf33;
}

.whatsapp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    background: #1ebc57;
    color: white;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    /* Taller hero */
    min-height: 600px;
    background: url('../images/banner.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-color: #1a202c;
    /* Fallback */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    /* Add subtle animation */
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(46, 139, 87, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(46, 139, 87, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

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

.btn-primary.large,
.btn-secondary.large {
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
}

.social-proof {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.95rem;
    opacity: 0.9;
}

.social-proof span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Impact Stats */
.impact-stats {
    background: var(--white);
    padding: 4rem 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Subtle lift */
    z-index: 10;
    margin-top: -3rem;
    /* Overlap hero slightly */
    border-radius: 20px 20px 0 0;
}

.impact-stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat .label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
}

/* Project Overview */
.project-overview {
    padding: 6rem 0;
    background: var(--light-bg);
}

.project-overview h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
}

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

.overview-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a5568;
}

.features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
}

.feature .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(46, 139, 87, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 1.5rem;
}

.overview-image {
    position: relative;
}

.overview-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.overview-image:hover img {
    transform: scale(1.02);
}

/* Volunteer Options */
.volunteer-options {
    padding: 6rem 0;
    background: var(--white);
}

.volunteer-options h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
}

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

.option-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.option-card.highlighted {
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.1);
}

.option-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.option-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.option-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 0.5rem;
    flex-grow: 1;
}

.option-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: #4a5568;
}

.option-card ul li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

.urgency-badge {
    background: #fff3cd;
    color: #856404;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.impact-text {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 6rem 0;
    color: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial .quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial .author {
    display: flex;
    flex-direction: column;
}

.testimonial .author strong {
    font-size: 1.1rem;
}

.testimonial .author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: #fff;
    background-image: radial-gradient(#2E8B57 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #f7fafc;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.cta-section p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

/* Sticky Donate Bar (Mobile) */
.sticky-donate-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
}

.donate-btn.mobile {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
}

/* Footer */
.main-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 4rem 0;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Utils */
.page-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/ostional-beach.jpg') center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

    nav {
        padding: 1rem 1.5rem;
    }

    .mobile-menu {
        display: block;
    }

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

    .hero-content {
        padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .impact-stats {
        margin-top: 0;
        border-radius: 0;
        padding: 3rem 0;
    }

    .sticky-donate-bar {
        display: block;
    }

    .cta-section {
        padding-bottom: 6rem;
        /* Space for sticky bar */
    }

    .overview-grid {
        grid-template-columns: 1fr;
        /* Force 1 column on mobile */
    }
}

/* --- New Internal Page Styles --- */

/* Program Benefits (On-Site) */
.program-benefits {
    padding: 6rem 0;
    background: var(--light-bg);
}

.program-benefits h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
}

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

.benefit {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 139, 87, 0.2);
}

.benefit .icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    background: rgba(46, 139, 87, 0.1);
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary-color);
}

.benefit h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    color: #1a202c;
    font-weight: 700;
}

.benefit p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Daily Schedule (On-Site) */
.daily-schedule {
    padding: 6rem 0;
    background: var(--white);
}

.daily-schedule h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.schedule-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3.5rem;
    align-items: center;
}

.schedule-item::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px #e2e8f0;
    z-index: 2;
}

.schedule-item.highlight::after {
    background: var(--accent-color);
}

.schedule-item .time {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
    text-align: right;
    font-size: 1.1rem;
}

.schedule-item .activity {
    flex-grow: 1;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    font-weight: 500;
    color: #2d3748;
}

.schedule-item.highlight .activity {
    background: #fff8eb;
    /* Light Gold/Yellow tint */
    border-color: #fceebf;
    color: #744210;
}

/* Requirements (On-Site) */
.requirements {
    padding: 6rem 0;
    background: #f8fafc;
}

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

@media (max-width: 900px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

.requirements-list h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.requirements-list ul {
    list-style: none;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.requirements-list li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #4a5568;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #edf2f7;
}

.requirements-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Remote Volunteer Page Specifics */
.remote-hero {
    /* Overlay handled by page-hero class utility in CSS but we can darken it */
}

.urgency-banner {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-top: 2rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.impact-counter {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-top: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.impact-stat strong {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 12px;
    border-radius: 6px;
    margin: 0.75rem 0;
    overflow: hidden;
}

.progress-fill {
    background: var(--accent-color);
    height: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.25) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.25) 75%,
            transparent 75%,
            transparent);
    background-size: 20px 20px;
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.impact-explainer {
    padding: 6rem 0;
    background: var(--white);
}

.impact-explainer h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.impact-item {
    text-align: center;
    transition: transform 0.3s;
}

.impact-item:hover {
    transform: translateY(-10px);
}

.impact-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    height: 240px;
}

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

.impact-item:hover .impact-image img {
    transform: scale(1.1);
}

.impact-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #1a202c;
}

.impact-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Perks Section */
.perks-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.perks-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.perk {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.perk:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.perk-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.perk h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

/* Transparency Section */
.transparency-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--white);
}

.transparency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.transparency-chart {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    height: 300px;
    align-items: flex-end;
    margin: 4rem auto;
    max-width: 600px;
    padding: 0 1.5rem;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.chart-bar {
    width: 100%;
    background: var(--primary-color);
    border-radius: 12px 12px 0 0;
    opacity: 0.9;
    transition: height 1s ease-out;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chart-bar::after {
    content: attr(data-percent);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    color: #2d3748;
}

.chart-item:nth-child(2) .chart-bar {
    background: var(--secondary-color);
}

.chart-item:nth-child(3) .chart-bar {
    background: #cbd5e0;
}

.chart-label {
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
}

.chart-category {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.chart-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.transparency-details {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
}

.transparency-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.transparency-details ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.transparency-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.transparency-details li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 0.5;
}

/* About Us Page Styles */
.mission-section {
    padding: 6rem 0;
    background: var(--white);
}

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

@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.mission-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-point {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.mission-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.partnership-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.partnership-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #1a202c;
}

.partnership-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.partnership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partnership-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: #1a202c;
}

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

.disclaimer-box {
    background: #fff8eb;
    border: 1px solid #fceebf;
    color: #744210;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.disclaimer-box h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.disclaimer-box p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.notice-link {
    font-weight: 700;
    color: #744210;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.notice-link:hover {
    opacity: 0.8;
}

.values-section {
    padding: 6rem 0;
    background: var(--white);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #1a202c;
}

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

.value {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.value:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.value h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

.value p {
    color: #4a5568;
}

.contact-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info,
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
}

.future-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c5282, #2a4365);
    color: white;
}

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

@media (max-width: 900px) {
    .future-content {
        grid-template-columns: 1fr;
    }
}

.future-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.future-text ul {
    margin: 1.5rem 0;
    list-style: none;
}

.future-text li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.future-text li::before {
    content: "➜";
    color: var(--accent-color);
}

.future-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border-radius: 6px;
    border: none;
}

/* Glam Banner Styles */
.glam-banner {
    background: linear-gradient(135deg, #1a202c 0%, #2f855a 50%, #1a202c 100%);
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glam-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    margin: 0;
    letter-spacing: 0.5px;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
        text-shadow: 0 0 20px rgba(47, 133, 90, 0.8), 0 0 10px rgba(255, 255, 255, 0.4);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

/* Brochure Popup (Luxury Modal) */
.brochure-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brochure-popup.active {
    display: flex;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    z-index: 2001;
    background: #0f291e;
    /* Deep Luxury Green */
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 700px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brochure-popup.active .popup-content {
    transform: translateY(0);
}

.popup-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    /* Restore intent for serif if font loaded, or fallback */
    font-family: var(--font-family);
    /* Fallback to Inter if Playfair not loaded, but let's keep it clean */
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f7fafc;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.popup-content .highlight-sub {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0;
}

.close-popup:hover {
    color: white;
}

/* Form Styles from previous implementation */
.brochure-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.brochure-form input[type="email"] {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    width: 300px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.brochure-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.brochure-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: var(--accent-color);
    color: #1a202c;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.brochure-form button:hover {
    transform: translateY(-2px);
    background: #d69e2e;
}

@media (max-width: 600px) {
    .brochure-form input[type="email"] {
        width: 100%;
    }

    .popup-content {
        padding: 2rem 1.5rem;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }
}