/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0b2b44;
    --primary-mid: #1d4a6b;
    --accent-red: #c44536;
    --accent-green: #2a7d4f;
    --accent-gold: #d4a040;
    --light-bg: #f0f5fa;
    --text-dark: #1a1a2e;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: #fafafc;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
header {
    background: white;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.6rem 0;
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.logo-text span {
    color: var(--accent-red);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    font-weight: 500;
    font-size: 0.9rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-red);
}

.btn-donate {
    background: var(--accent-red);
    color: white !important;
    padding: 0.4rem 1.6rem;
    border-radius: 40px;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
}

.btn-donate:hover {
    background: #a83629 !important;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.2rem 0.4rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-dark);
    color: #dce6f0;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    border-radius: 48px 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-grid h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-grid a {
    color: #b8c9db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-grid a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid #ffffff20;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #b8c9db;
}

.footer-bottom i {
    color: var(--accent-red);
}

/* ===== HERO ===== */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(160deg, var(--light-bg) 0%, #dce6f0 100%);
    border-radius: 0 0 48px 48px;
    margin-bottom: 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.hero h1 span {
    color: var(--accent-red);
}

.hero p {
    font-size: 1.15rem;
    color: #2d4059;
    max-width: 540px;
    margin: 1.2rem 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-red)14;
    color: var(--accent-red);
    padding: 0.3rem 1.4rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--accent-red)30;
    margin-bottom: 1rem;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    padding: 0.8rem 2.6rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    border: none;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--primary-mid);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats div {
    text-align: center;
}

.hero-stats .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.hero-stats .label {
    font-size: 0.8rem;
    color: #3d5a78;
    font-weight: 500;
}

.hero-image {
    background: rgba(255,255,255,0.5);
    border-radius: 32px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #ffffff80;
    backdrop-filter: blur(4px);
}

.hero-image .big-icon {
    font-size: 5rem;
    color: var(--accent-gold);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.hero-image h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.hero-image p {
    color: #3d5a78;
    font-size: 1rem;
    margin-top: 0.3rem;
}

/* ===== PAGE TITLES ===== */
.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.page-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin-top: 0.4rem;
    border-radius: 4px;
}

.page-sub {
    color: #3d5a78;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.section-padding {
    padding: 3rem 0;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid var(--accent-gold);
}

.stat-card i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.stat-card h4 {
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    color: #2d4059;
}

.about-text strong {
    color: var(--primary-dark);
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.value-item {
    background: white;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.green-border { border-left: 4px solid var(--accent-green); }
.red-border { border-left: 4px solid var(--accent-red); }
.gold-border { border-left: 4px solid var(--accent-gold); }

.about-image {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #ffffff80;
}

.about-image .big-icon {
    font-size: 4.5rem;
    color: var(--accent-gold);
    opacity: 0.5;
}

.doctrine-box {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--accent-red);
}

.doctrine-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.doctrine-box p {
    color: #2d4059;
}

/* ===== WHAT WE DO ===== */
.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.what-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.what-card:hover {
    transform: translateY(-4px);
}

.green-top { border-top: 4px solid var(--accent-green); }
.red-top { border-top: 4px solid var(--accent-red); }
.gold-top { border-top: 4px solid var(--accent-gold); }

.what-card i {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.what-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.what-card p {
    color: #3d5a78;
    font-size: 0.9rem;
}

.method-section {
    background: var(--light-bg);
    border-radius: 48px;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.method-section h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.method-step {
    background: white;
    padding: 1.2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.method-step .num {
    display: inline-block;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.green-step .num { background: var(--accent-green); }
.red-step .num { background: var(--accent-red); }
.gold-step .num { background: var(--accent-gold); }

.method-step h4 {
    color: var(--primary-dark);
}

.method-step p {
    font-size: 0.85rem;
    color: #3d5a78;
}

/* ===== GALERIE ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: #dce6f0;
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-mid);
    font-weight: 500;
    gap: 0.5rem;
    border: 1px solid #ffffff80;
    transition: transform 0.2s;
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item i {
    font-size: 2.5rem;
}

.gallery-item span {
    font-size: 0.7rem;
    color: #3d5a78;
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 20px;
}

.news-card .date {
    font-size: 0.75rem;
    color: var(--accent-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h4 {
    margin: 0.5rem 0;
    color: var(--primary-dark);
}

.news-card p {
    color: #3d5a78;
    font-size: 0.9rem;
}

.timeline-box {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.timeline-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-weight: 800;
    font-size: 1.2rem;
    min-width: 80px;
}

.timeline-content h4 {
    color: var(--primary-dark);
}

.timeline-content p {
    color: #3d5a78;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.6rem;
    color: #2d4059;
}

.contact-info i {
    width: 1.8rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.social-links a {
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #dce6f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-family: inherit;
    font-size: 1rem;
    background: var(--light-bg);
    transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.btn-submit {
    background: var(--primary-dark);
    color: white;
    padding: 0.8rem 2.4rem;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--primary-mid);
}

/* ===== SOUTENIR ===== */
.difficulties-box {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.difficulties-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.difficulties-box ul {
    list-style: none;
    padding: 0;
}

.difficulties-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.difficulties-box li:last-child {
    border-bottom: none;
}

.difficulties-box li i {
    width: 2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.support-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s;
}

.support-card:hover {
    transform: translateY(-4px);
}

.support-card .amount {
    font-size: 2.2rem;
    font-weight: 800;
}

.support-card h4 {
    color: var(--primary-dark);
    margin: 0.5rem 0;
}

.support-card p {
    color: #3d5a78;
    font-size: 0.9rem;
}

.donate-section {
    background: var(--light-bg);
    border-radius: 48px;
    padding: 3rem 2rem;
    margin-top: 2rem;
    text-align: center;
}

.donate-section .big-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.donate-section h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.donate-section p {
    color: #3d5a78;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.btn-donate-large {
    background: var(--accent-red);
    color: white;
    padding: 1rem 3rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
}

.btn-donate-large:hover {
    background: #a83629;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 1rem 0;
        border-top: 1px solid #eee;
    }
    .nav-links.open {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .values-list {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 1.2rem;
    }
    .contact-grid {
        padding: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 2.5rem 0 3rem;
    }
    .page-title {
        font-size: 2rem;
    }
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .what-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-image .big-icon {
        font-size: 3.5rem;
    }
    .support-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ============================================================ */
/* NEW STYLES FOR INDEX ENHANCEMENT */
/* ============================================================ */

/* ---- Hero Buttons ---- */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-dark);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-outline {
    background: transparent;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-outline:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ---- Hero Image ---- */
.hero-img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 24px;
}

.hero-image {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    text-align: center;
}

.hero-image-overlay p:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.hero-image-overlay em {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ---- Mission Grid ---- */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.mission-card {
    background: white;
    padding: 2rem 1.8rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
}

.mission-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.mission-card p {
    color: #2d4059;
    font-size: 1rem;
}

.mission-detail {
    font-size: 0.85rem !important;
    color: #5a7a9a !important;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ---- Stats Section ---- */
.stats-section {
    background: var(--light-bg);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 48px;
}

.stats-highlight {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.stats-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    max-height: 400px;
}

.stats-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.stats-content > p {
    color: #3d5a78;
    margin-bottom: 2rem;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-large {
    text-align: center;
}

.stat-number-large {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.stat-label-large {
    display: block;
    font-size: 0.8rem;
    color: #3d5a78;
}

/* ---- Activities Grid ---- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-6px);
}

.activity-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.activity-content {
    padding: 1.5rem;
}

.activity-content i {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.activity-content h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.activity-content p {
    color: #3d5a78;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.read-more {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more:hover {
    color: #a83629;
}

.read-more i {
    font-size: 0.7rem;
}

/* ---- Testimonials ---- */
.testimonials-section {
    background: white;
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 48px;
    box-shadow: var(--shadow);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    color: #2d4059;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-icon {
    font-size: 2.5rem;
    color: var(--primary-mid);
}

.testimonial-author strong {
    display: block;
    color: var(--primary-dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #3d5a78;
}

/* ---- Provinces ---- */
.provinces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.province-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.province-card:hover {
    transform: translateY(-4px);
}

.province-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.province-card h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.province-card p {
    color: #3d5a78;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* ---- CTA Section ---- */
.cta-section {
    background: var(--primary-dark);
    padding: 4rem 0;
    border-radius: 48px;
    margin: 2rem 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    color: white;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text p {
    color: #b8c9db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    max-height: 300px;
}

/* ---- Responsive Additions ---- */
@media (max-width: 992px) {
    .stats-highlight {
        grid-template-columns: 1fr;
    }
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-content {
        grid-template-columns: 1fr;
    }
    .cta-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    .activities-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    .provinces-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================================ */
/* FOOTER ENHANCED STYLES */
/* ============================================================ */

footer {
    background: var(--primary-dark);
    color: #dce6f0;
    padding: 3rem 0 0;
    margin-top: 3rem;
    border-radius: 48px 48px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ---- Footer Logo ---- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.footer-logo span span {
    color: var(--accent-red);
}

.footer-description {
    font-size: 0.9rem;
    color: #b8c9db;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 360px;
}

/* ---- Footer Social ---- */
.footer-social {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* ---- Footer Columns ---- */
.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b8c9db;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--accent-gold);
    transition: transform 0.2s;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* ---- Footer Contact Mini ---- */
.footer-contact-mini {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-contact-mini p {
    font-size: 0.85rem;
    color: #b8c9db;
    margin-bottom: 0.3rem;
}

.footer-contact-mini i {
    width: 1.4rem;
}

/* ---- Footer Bottom ---- */
.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #8a9fb0;
}

.footer-heart {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-links a {
    color: #8a9fb0;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom-links .separator {
    color: #4a6a80;
}

/* ============================================================ */
/* RESPONSIVE FOOTER */
/* ============================================================ */

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    footer {
        border-radius: 32px 32px 0 0;
        padding: 2rem 0 0;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
    }

    .footer-col h4 {
        text-align: center;
    }

    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact-mini {
        text-align: center;
    }
}

/* ============================================================ */
/* FOOTER STYLES */
/* ============================================================ */

footer {
    background: var(--primary-dark);
    color: #dce6f0;
    padding: 3rem 0 0;
    margin-top: 3rem;
    border-radius: 48px 48px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ---- Footer Logo ---- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.footer-logo span span {
    color: var(--accent-red);
}

.footer-description {
    font-size: 0.85rem;
    color: #b8c9db;
    line-height: 1.7;
    max-width: 360px;
}

/* ---- Footer Columns ---- */
.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b8c9db;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.footer-links a i {
    font-size: 0.5rem;
    color: var(--accent-gold);
    transition: transform 0.2s;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* ---- Footer Bottom ---- */
.footer-bottom {
    padding: 1.8rem 0 1.5rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #8a9fb0;
}

.footer-contact-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-contact-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
}

.footer-heart {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-credit {
    color: #6a8aa0;
    font-size: 0.75rem;
    font-style: italic;
}

/* ============================================================ */
/* RESPONSIVE FOOTER */
/* ============================================================ */

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    footer {
        border-radius: 32px 32px 0 0;
        padding: 2rem 0 0;
    }

    .footer-col h4 {
        text-align: center;
    }

    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-contact-row {
        align-items: center;
    }
}
