﻿/* ================================================
   Mango — custom.css
   Accent: #e67e22 (orange)
   Template: 2082_pure_mix (Option A — keep template CSS)
   ================================================ */

:root {
    --accent: #e67e22;
    --accent-dark: #cf6d17;
    --accent-light: #f39c4f;
    --bg: #ffffff;
    --surface: #f8f9fa;
    --surface2: #f0f2f5;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #ffffff;
    --border: rgba(0,0,0,0.08);
    --radius: 10px;
    --gap: 40px;
    --nav-height: 70px;
}

/* ---- Typography overrides ---- */
body {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--text);
}

h1 { font-size: 58px; font-weight: 700; line-height: 1.15; }
h2 { font-size: 40px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 22px; font-weight: 600; line-height: 1.4; }
p  { font-size: 18px; line-height: 1.9; }

/* ---- Nav overrides ---- */
.nav-inner { background: #fff !important; border-bottom: 1px solid var(--border); }
.nav-inner .navbar { min-height: var(--nav-height); }
.nav-inner .brand a {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent) !important;
    text-decoration: none;
}
#nav-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text) !important;
}
#nav-menu li a:hover,
#nav-menu li.active a {
    color: var(--accent) !important;
}

/* ---- Accent color overrides ---- */
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

.btn-primary, button.btn-primary, input[type="submit"] {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: var(--accent-dark) !important;
    color: #fff !important;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}
.btn-secondary:hover {
    background: var(--accent);
    color: #fff !important;
}

/* ---- Section labels ---- */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ---- Hero ---- */
.hero-section {
    background: #1a2332;
    color: #fff;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 100px 0;
}
.hero-section h1 { color: #fff; font-size: 58px; margin-bottom: 20px; }
.hero-section p  { color: rgba(255,255,255,0.85); font-size: 20px; margin-bottom: 32px; max-width: 600px; }
.hero-section .section-label { color: var(--accent-light); }
.btn-gap { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* ---- Page hero ---- */
.page-hero {
    background: #1a2332;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; font-size: 48px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 20px; }

/* ---- Sections ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--surface); color: var(--text); padding: 80px 0; }
.section-alt h2, .section-alt h3 { color: var(--text); }

/* ---- Feature cards ---- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    color: var(--text);
}
.feature-card h3 { color: var(--text); margin-bottom: 12px; }
.feature-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

/* ---- Steps ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.step {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    border-top: 4px solid var(--accent);
    color: var(--text);
}
.step-num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}
.step h3 { color: var(--text); font-size: 20px; }

/* ---- Stats row ---- */
.stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}
.stat-item { text-align: center; }
.stat-num  { font-size: 42px; font-weight: 700; color: var(--accent); display: block; }
.stat-lbl  { font-size: 14px; color: var(--text-muted); }

/* ---- Pricing ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
    align-items: start;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    color: var(--text);
    position: relative;
}
.pricing-card h3 { color: var(--text); font-size: 22px; margin-bottom: 8px; }
.pricing-card.featured {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.03);
}
.pricing-card.featured h3 { color: #fff; }
.pricing-card.featured .price { color: #fff; }
.pricing-card.featured .price-desc { color: rgba(255,255,255,0.85); }
.pricing-card.featured ul li { color: rgba(255,255,255,0.9); }
.badge {
    display: inline-block;
    background: #fff;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin: 16px 0 8px;
}
.price span { font-size: 18px; font-weight: 400; }
.price-desc { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; }
.features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}
.features li {
    padding: 6px 0;
    font-size: 16px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.features li::before { content: "✓ "; color: var(--accent); font-weight: 700; }
.pricing-card.featured .features li::before { color: #fff; }
.pricing-card.featured .features li { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }

/* ---- FAQ accordion ---- */
.faq-section { padding: 80px 0; background: var(--surface); color: var(--text); }
.faq-section h2 { color: var(--text); text-align: center; margin-bottom: 40px; }
.panel-title a { color: var(--text); font-size: 18px; font-weight: 600; }
.panel-heading { background: #fff; border: 1px solid var(--border); }
.panel-body { color: var(--text); font-size: 16px; }

/* ---- Team ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    color: var(--text);
}
.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 10%;
    margin: 0 auto 16px;
    display: block;
    border: 4px solid var(--accent);
}
.team-role { color: var(--accent); font-weight: 600; font-size: 15px; margin-bottom: 12px; }
.team-bio  { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.team-email a { color: var(--accent); font-size: 14px; }

/* ---- Blog grid ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
.blog-grid > [class*="col-"] {
    display: flex;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--text);
    display: flex;
    flex-direction: column;
    width: 100%;
}
.blog-card a { color: var(--text); text-decoration: none; }
.blog-card a:hover { color: var(--accent); }
.blog-card-img {
    height: 200px;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px;
    flex: 1;
}
.blog-card-body time { font-size: 13px; color: var(--text-muted); }
.blog-card-body h3 { font-size: 18px; margin: 8px 0; color: var(--text); }
.blog-card-body p  { font-size: 15px; color: var(--text-muted); }

/* ---- About page ---- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.value-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 4px solid var(--accent);
    color: var(--text);
}
.value-card h3 { color: var(--text); font-size: 20px; }
.value-card i  { font-size: 28px; color: var(--accent); margin-bottom: 12px; display: block; }

/* ---- Contact ---- */
.contact-list { list-style: none; padding: 0; }
.contact-list li { padding: 10px 0; font-size: 17px; color: var(--text); border-bottom: 1px solid var(--border); }
.contact-list li i { color: var(--accent); width: 24px; }
.contact-form .form-control {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 16px;
    color: var(--text);
    width: 100%;
    margin-bottom: 12px;
}
.contact-form textarea { resize: vertical; }

/* ---- CTA section ---- */
.cta-section {
    background: var(--accent);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 { color: #fff; font-size: 38px; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.9); font-size: 20px; margin-bottom: 32px; }
.cta-section .btn-light {
    background: #fff;
    color: var(--accent) !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}
.cta-section .btn-light:hover { background: #f0f0f0; }

/* ---- Footer ---- */
footer {
    background: #1a2332 !important;
    color: #c8d0dc !important;
    padding: 60px 0 30px !important;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
footer h3 { color: #fff !important; font-size: 18px; margin-bottom: 16px; }
footer p  { color: #c8d0dc; font-size: 16px; line-height: 1.7; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: #c8d0dc; font-size: 15px; text-decoration: none; }
footer ul li a:hover { color: var(--accent); }
.footer-address { color: #a0aab6 !important; font-size: 14px; }
.footer-bottom { padding-top: 24px; text-align: center; color: #7a8694; font-size: 14px; }
footer .social-icon { display: none; } /* hide template social icons */

/* ---- Cookie banner ---- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #e8eaf0;
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { color: #fff; }
.cookie-text p { margin: 4px 0 0; font-size: 14px; color: #c8d0dc; }
.cookie-text a { color: var(--accent); }
.cookie-buttons { display: flex; gap: 10px; }
#cookie-accept {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
#cookie-decline {
    background: transparent;
    color: #c8d0dc;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

/* ---- Utility ---- */
.mt-0 { margin-top: 0; }
.text-accent { color: var(--accent); }
.section-title { margin-bottom: 16px; }
.section-sub  { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 0 40px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-lg-5, .col-lg-6, .col-lg-7 { padding: 0 15px; }
.col-lg-5 { flex: 0 0 41.667%; max-width: 41.667%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; }
@media (max-width: 991px) {
    .col-lg-5, .col-lg-6, .col-lg-7 { flex: 0 0 100%; max-width: 100%; }
}
.align-items-center { align-items: center; }

/* ---- Backed by section ---- */
.backed-section { background: var(--surface2); color: var(--text); padding: 60px 0; text-align: center; }
.backed-section h2 { color: var(--text); }
.backed-section p  { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.funding-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: var(--radius);
    margin: 20px 0;
}

/* ============================================================
   NAV: Menu label beside hamburger icon
   ============================================================ */
.menu-trigger {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 14px !important;
    border-radius: 4px;
    cursor: pointer;
}
.menu-trigger .icon {
    font-size: 20px;
    line-height: 1;
}
.menu-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: inherit;
    line-height: 1;
}

/* NAV: push Menu button to the right, keep logo in place */
.nav-inner .row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.brand { float: none !important; }
.navicon { float: none !important; margin-left: auto !important; }

/* NAV MENU: larger text, high-contrast inactive links */
#nav-menu a {
    font-size: 36px !important;
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}
#nav-menu li.active a {
    color: #e67e22 !important;
    font-weight: 700 !important;
}
#nav-menu a:hover {
    color: #e67e22 !important;
}

/* ============================================================
   ARTICLE / LEGAL CONTENT WIDTH (max 720px centered)
   ============================================================ */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Site Logo */
.site-logo { height: 36px; width: auto; vertical-align: middle; margin-right: 8px; }
