/* ========================================= */
/* CORE SETUP & TYPOGRAPHY                   */
/* ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: #ffffff;
    font-family: 'Exo', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, button { font-family: 'Orbitron', sans-serif; }
p, span, li, a { font-family: 'Exo', sans-serif; }

/* ========================================= */
/* NAVBAR (RED - YOUR STYLE)                 */
/* ========================================= */
#navbar {
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #940810;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#navbar a { text-decoration: none; margin: 0 5px; }

#navbar button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

#navbar button:hover, #navbar button.active {
    background: #c79406;
    color: white;
    border-radius: 4px;
}

/* Mobile Hamburger */
#hamburger-menu {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 12px;
}

#mobile-navbar {
    display: none;
    background: #7b0323;
    text-align: center;
}
#mobile-navbar button {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 18px;
}


/* ========================================= */
/* HERO SECTION                              */
/* ========================================= */
#partner-hero {
    background: linear-gradient(135deg, #940810 0%, #5e0000 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.tag {
    background: #c79406;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

#partner-hero h1 { font-size: 3rem; margin-bottom: 20px; letter-spacing: 2px; }
#partner-hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; color: #ffcccc; }

/* ========================================= */
/* DASHBOARD SECTION                         */
/* ========================================= */
#dashboard { padding: 60px 10%; text-align: center; }
#dashboard h2 { color: #940810; font-size: 2.5rem; margin-bottom: 10px; }
.section-sub { color: #666; margin-bottom: 50px; }

.dashboard-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.stats-box {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #940810;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.stat-num {
    display: block;
    font-family: 'Orbitron';
    font-size: 2rem;
    color: #940810;
    font-weight: bold;
}
.stat-label { font-size: 0.8rem; text-transform: uppercase; color: #888; }
.stat-desc { text-align: left; font-size: 0.95rem; line-height: 1.6; }

.chart-box {
    flex: 1;
    min-width: 300px;
    height: 300px;
}

/* ========================================= */
/* TIER 1: STRATEGIC PARTNERS (The Cards)    */
/* ========================================= */
#tier-one {
    background: #fdfdfd;
    padding: 80px 5%;
    border-top: 1px solid #eee;
}

.tier-header {
    text-align: center;
    font-family: 'Orbitron';
    color: #c79406;
    font-size: 1.5rem;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.partners-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-card {
    background: white;
    width: 340px;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: #c79406;
    box-shadow: 0 20px 40px rgba(148, 8, 16, 0.15);
}

/* Logo Styling */
.logo-wrapper {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-card h3 { color: #333; margin-bottom: 15px; font-size: 1.6rem; }

/* THE OFFICIAL RIBBON STYLE */
.official-ribbon {
    background: #940810;
    color: white;
    width: 100%;
    padding: 8px 0;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.capability-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    width: 100%;
}

.capability-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}
.capability-list i { color: #c79406; margin-right: 10px; }

.partner-btn {
    text-decoration: none;
    color: #940810;
    border: 2px solid #940810;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    font-size: 0.9rem;
}
.partner-btn:hover { background: #940810; color: white; }

/* ========================================= */
/* TIER 2: CAPSULE STYLE                     */
/* ========================================= */
#tier-two {
    padding: 80px 5%;
    text-align: center;
    background: #fff;
}

.capsule-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.capsule-item {
    background: #f8f8f8;
    padding: 25px 40px;
    border-radius: 60px;
    border-left: 5px solid #940810;
    text-align: left;
    min-width: 320px;
    max-width: 400px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.capsule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.capsule-item h4 { color: #333; margin-bottom: 5px; font-size: 1.3rem; }
.capsule-item span { display: block; color: #c79406; font-size: 0.8rem; font-weight: bold; margin-bottom: 8px; }
.capsule-item p { font-size: 0.95rem; color: #666; margin: 0; line-height: 1.4; }

/* ========================================= */
/* FOOTER & CTA                              */
/* ========================================= */
#join-cta {
    background: linear-gradient(90deg, #940810, #7b0323);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin: 40px 5%;
    border-radius: 20px;
}
#join-cta h2 { color: #c79406; margin-bottom: 10px; }

.join-btn {
    display: inline-block;
    background: white;
    color: #940810;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    font-family: 'Orbitron';
    transition: 0.3s;
}
.join-btn:hover { background: #c79406; color: white; }

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #940810;
    color: white;
    padding: 20px;
    text-align: center;
}
.footer-icons { margin-bottom: 10px; }
.footer-icons a { color:#c79406; margin: 0 10px; }
#slogan { font-size: 18px; margin-bottom: 10px; font-family: "Orbitron"; }
#privacy-policy {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Exo', sans-serif;
}

/* ======================== */
/* PROFESSIONAL FOOTER CSS  */
/* (Paste at the bottom of all CSS files) */
/* ======================== */

#main-footer {
    background-color: #940810;
    color: white;
    padding-top: 60px;
    border-top: 5px solid #7b0323;
    font-family: 'Exo', sans-serif;
    margin-top: 50px; /* Ensures space above footer */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px 40px 20px;
    gap: 40px;
}

.footer-col { flex: 1; min-width: 200px; text-align: left; }

.footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: white;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #f7c450; /* Gold Header */
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Exo', sans-serif;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f7c450;
    padding-left: 5px;
}

.footer-slogan {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-socials { display: flex; gap: 15px; }
.footer-socials a { color: white; font-size: 1.5rem; transition: 0.3s; }
.footer-socials a:hover { color: #f7c450; transform: translateY(-3px); }

/* Contact Specifics */
.contact-col p {
    margin-bottom: 15px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Exo', sans-serif;
}
.contact-col i { color: #f7c450; }

.footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    transition: 0.3s;
}
.footer-btn:hover {
    background: #f7c450;
    border-color: #f7c450;
    color: #940810;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #7b0323;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-bottom p { margin: 0; color: #ccc; }
.legal-links a { color: #ccc; text-decoration: none; transition: 0.3s; }
.legal-links a:hover { color: white; }
.separator { margin: 0 10px; color: #999; }

/* Mobile Response */
@media (max-width: 768px) {
    .footer-container { flex-direction: column; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}
/* ======================== */
/* PROFESSIONAL FOOTER CSS  */
/* (Paste at the bottom of all CSS files) */
/* ======================== */

#main-footer {
    background-color: #940810;
    color: white;
    padding-top: 60px;
    border-top: 5px solid #7b0323;
    font-family: 'Exo', sans-serif;
    margin-top: 50px; /* Ensures space above footer */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px 40px 20px;
    gap: 40px;
}

.footer-col { flex: 1; min-width: 200px; text-align: left; }

.footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: white;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #f7c450; /* Gold Header */
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Exo', sans-serif;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f7c450;
    padding-left: 5px;
}

.footer-slogan {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-socials { display: flex; gap: 15px; }
.footer-socials a { color: white; font-size: 1.5rem; transition: 0.3s; }
.footer-socials a:hover { color: #f7c450; transform: translateY(-3px); }

/* Contact Specifics */
.contact-col p {
    margin-bottom: 15px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Exo', sans-serif;
}
.contact-col i { color: #f7c450; }

.footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    transition: 0.3s;
}
.footer-btn:hover {
    background: #f7c450;
    border-color: #f7c450;
    color: #940810;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #7b0323;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-bottom p { margin: 0; color: #ccc; }
.legal-links a { color: #ccc; text-decoration: none; transition: 0.3s; }
.legal-links a:hover { color: white; }
.separator { margin: 0 10px; color: #999; }

/* COST ALLOCATION BARS */
/* COST ALLOCATION BARS - LIGHT THEME MATCH */
.chart-box {
    background-color: #ffffff; /* Clean white background */
    border: none; /* Removes the ugly thin black border */
    border-left: 6px solid #940810; /* Matches the thick red accent of the left card */
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04); /* Soft floating shadow like the left card */
    padding: 40px 30px; /* Generous breathing room */
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.allocation-title {
    font-family: 'Orbitron', sans-serif;
    color: #940810; /* Deep red to match the aesthetic */
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.allocation-sub {
    font-family: 'Exo', sans-serif;
    color: #c79406; /* Gold accent */
    font-size: 0.9rem;
    margin: 0 0 30px 0;
    font-weight: 700;
    text-align: center;
}

.alloc-item {
    margin-bottom: 20px;
}

.alloc-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Exo', sans-serif;
    color: #333333; /* Dark text so it's readable on white */
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.alloc-bg {
    width: 100%;
    height: 8px; /* Slightly thicker bars for a premium feel */
    background: #f0f0f0; /* Soft light gray for the track */
    border-radius: 4px;
    overflow: hidden;
}

.alloc-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1); 
}
/* Mobile Response */
@media (max-width: 768px) {
    .footer-container { flex-direction: column; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 10px; }

    #navbar { justify-content: flex-end; padding: 15px 20px; min-height: 60px; }
    #navbar a { display: none; } /* Strictly hide desktop buttons */
    #hamburger-menu { display: block; position: relative; right: 0; top: 0; }
    
    #mobile-navbar { display: none; background: #7b0323; }
    #mobile-navbar a { text-decoration: none; display: block; }
    #mobile-navbar button {
        width: 100%;
        padding: 15px;
        background: transparent;
        color: white;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 16px;
        font-family: 'Orbitron', sans-serif;
        text-align: center;
    }
}