/* ═══════════════════════════════════════════════════════════════
   ForgeForth Africa - Static Website Styles
   Developed by SynaVue Technologies (https://synavuetechnologies.com)
═══════════════════════════════════════════════════════════════ */

@font-face {
    font-family: 'BrandonText-Regular';
    src: url('/fonts/BrandonText-Regular.woff2') format('woff2'),
         url('/fonts/BrandonText-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BrandonText-Regular';
    src: url('/fonts/BrandonText-Light.woff2') format('woff2'),
         url('/fonts/BrandonText-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BrandonText-Regular';
    src: url('/fonts/BrandonText-Medium.woff2') format('woff2'),
         url('/fonts/BrandonText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BrandonText-Regular';
    src: url('/fonts/BrandonText-Bold.woff2') format('woff2'),
         url('/fonts/BrandonText-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: BrandonText-Regular, 'Nunito', sans-serif;
    background: #0d0d14;
    color: #f1f5f9;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ───────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }

/* ── Design tokens ───────────────────────────── */
:root {
    --purple: #7c3aed;
    --purple-soft: #a78bfa;
    --cyan: #0891b2;
    --cyan-soft: #22d3ee;
    --green: #059669;
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.14);
    --surface: rgba(255,255,255,0.03);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
}

/* ── Gradient text ───────────────────────────── */
.gradient-text {
    background: linear-gradient(120deg, #a78bfa 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section label ───────────────────────────── */
.section-label {
    font-family: BrandonText-Regular, 'Nunito', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--purple-soft);
}

/* ── Thin card / surface ─────────────────────── */
.surface { background: var(--surface); border: 1px solid var(--border); }
.surface-strong { background: rgba(255,255,255,0.05); border: 1px solid var(--border-strong); }

/* ── Feature row ─────────────────────────────── */
.feature-row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.feature-row:last-child { border-bottom: none; }
.feature-row:hover { background: rgba(255,255,255,0.015); }
.feature-row .fn { font-family: BrandonText-Regular, 'Nunito', sans-serif; font-size: 11px; color: var(--text-muted); min-width: 28px; padding-top: 2px; }
.feature-row .ft { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.feature-row .fd { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* ── Buttons ─────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; background: linear-gradient(135deg, #7c3aed, #0891b2); color: #fff; font-size: 13px; font-weight: 500; border-radius: 6px; transition: opacity 0.2s, box-shadow 0.2s; text-decoration: none; }
.btn-primary:hover { opacity: 0.9; box-shadow: 0 4px 20px rgba(124,58,237,0.3); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; border: 1px solid var(--border-strong); color: #94a3b8; font-size: 13px; font-weight: 500; border-radius: 6px; transition: color 0.2s, border-color 0.2s; text-decoration: none; }
.btn-ghost:hover { color: #f1f5f9; border-color: rgba(255,255,255,0.2); }

/* ── Stat strip ──────────────────────────────── */
.stat-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.stat-item { padding: 12px 24px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-value { font-family: BrandonText-Regular, 'Nunito', sans-serif; font-size: 20px; font-weight: 500; color: var(--text-primary); }
.stat-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

@media (max-width: 640px) {
    .stat-strip { justify-content: center; }
    .stat-item { padding: 8px 14px; border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .stat-item:first-child { padding-left: 14px; }
    .stat-value { font-size: 16px; }
}

/* ── Accent line ─────────────────────────────── */
.accent-line { width: 32px; height: 2px; background: linear-gradient(90deg, #7c3aed, #0891b2); border-radius: 1px; margin-bottom: 16px; }

/* ── Grid background ─────────────────────────── */
.bg-grid { background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 48px 48px; }

/* ── Gradient border ─────────────────────────── */
.gradient-border { position: relative; background: rgba(16,16,26,0.95); border-radius: 8px; }
.gradient-border::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(124,58,237,0.4), rgba(8,145,178,0.4)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }

/* ── Tag / badge ─────────────────────────────── */
.tag { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border: 1px solid var(--border-strong); border-radius: 4px; font-size: 10px; font-weight: 500; color: var(--text-secondary); background: rgba(255,255,255,0.03); }

/* ── Fade in animation ───────────────────────── */
[data-aos] { transition: opacity 0.5s ease, transform 0.5s ease; }

/* ── Pulse dot ───────────────────────────────── */
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.pulse-dot { animation: pulse-dot 2s ease-in-out infinite; }

/* ── Mobile Responsive Overrides ─────────────── */
@media (max-width: 640px) {
    .feature-row { flex-direction: column; gap: 8px; padding: 12px 0; }
    .feature-row .fn { min-width: auto; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 11px 20px; font-size: 14px; }
}

/* Prevent horizontal overflow globally */
html, body { overflow-x: hidden; -webkit-overflow-scrolling: touch; }

/* ── Desktop footer clearance ─────────────── */
@media (min-width: 1024px) { main { padding-bottom: 56px !important; } }

/* Clamp ambient blobs on small screens */
@media (max-width: 640px) { .ambient-blob { max-width: 60vw !important; max-height: 60vw !important; } }

/* ── Nav styles ───────────────────────────── */
.nav-item.active { color: #c4b5fd !important; background: rgba(139,92,246,0.15); }
.nav-item.active svg { color: #c4b5fd; }

@keyframes borderPulse {
    0%, 100% { border-color: rgba(59,130,246,0.3); box-shadow: 0 0 5px rgba(59,130,246,0.1); }
    50% { border-color: rgba(59,130,246,0.6); box-shadow: 0 0 15px rgba(59,130,246,0.2); }
}
@keyframes feedbackPulse {
    0%, 100% { border-color: rgba(168,85,247,0.25); box-shadow: 0 0 4px rgba(168,85,247,0.1); }
    50% { border-color: rgba(168,85,247,0.55); box-shadow: 0 0 12px rgba(168,85,247,0.2); }
}
@keyframes a11yPulse {
    0%, 100% { border-color: rgba(6,182,212,0.2); box-shadow: 0 0 4px rgba(6,182,212,0.1); }
    50% { border-color: rgba(6,182,212,0.5); box-shadow: 0 0 12px rgba(6,182,212,0.2); }
}

.highlight-card-feedback { background: linear-gradient(135deg, rgba(168,85,247,0.06), rgba(236,72,153,0.04)); }
.highlight-card-feedback:hover { background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(236,72,153,0.08)); }
.highlight-card-a11y { background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(99,102,241,0.04)); }
.highlight-card-a11y:hover { background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(99,102,241,0.08)); }

.auth-btn { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.auth-btn:hover { transform: translateY(-2px); background: rgba(59,130,246,0.2) !important; box-shadow: 0 4px 15px rgba(59,130,246,0.3); }
.auth-btn:active { transform: translateY(0); }
.auth-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.1), transparent); animation: shimmer 4s ease-in-out infinite; }
@keyframes shimmer { 0%, 100% { left: -100%; } 50% { left: 100%; } }
#mobile-menu-btn.sidebar-open { background: linear-gradient(135deg,rgba(139,92,246,0.3),rgba(6,182,212,0.2)) !important; border-color: rgba(139,92,246,0.5) !important; box-shadow: 0 0 20px rgba(139,92,246,0.25); }

/* ── Print styles ───────────────────────────── */
@media print {
    .no-print { display: none !important; }
}

/* ── Contact Modal styles ───────────────────── */
.cm-label{display:block;font-size:10px;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;color:#94a3b8;margin-bottom:5px}
.cm-input{width:100%;padding:10px 14px;border-radius:12px;font-size:13px;color:#f8fafc;outline:none;transition:all .25s;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08)}
.cm-input::placeholder{color:#64748b}
.cm-input:focus{border-color:rgba(124,58,237,0.45);box-shadow:0 0 0 3px rgba(124,58,237,0.1);background:rgba(255,255,255,0.06)}
.cm-input:hover:not(:focus){border-color:rgba(255,255,255,0.14)}
.cm-input option{background:#0d0d14;color:#f8fafc}
.cm-input-wrap{border-radius:12px;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);transition:all .25s}
.cm-input-wrap:focus-within{border-color:rgba(124,58,237,0.45);box-shadow:0 0 0 3px rgba(124,58,237,0.1);background:rgba(255,255,255,0.06)}
.cm-action-btn{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px 10px;border-radius:12px;font-size:12px;font-weight:600;color:#cbd5e1;border:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.04);cursor:pointer;transition:all .25s}
.cm-action-btn:hover{border-color:rgba(124,58,237,0.45);background:rgba(124,58,237,0.12);color:#f8fafc;transform:translateY(-2px);box-shadow:0 4px 16px rgba(124,58,237,0.15)}
.cm-info-card{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:12px;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);transition:all .2s;text-decoration:none}
.cm-info-card:hover{background:rgba(255,255,255,0.07);border-color:rgba(255,255,255,0.14)}
.cm-info-icon{width:32px;height:32px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#a78bfa;background:linear-gradient(135deg,rgba(124,58,237,0.12),rgba(6,182,212,0.10));border:1px solid rgba(124,58,237,0.20)}
.cm-social{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:10px;color:#94a3b8;border:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.04);transition:all .25s}
.cm-social:hover{border-color:rgba(124,58,237,0.35);background:rgba(124,58,237,0.08);color:#a78bfa;transform:translateY(-2px)}
.cm-dropdown{display:none;position:absolute;top:calc(100% + 6px);left:0;width:min(300px,calc(100vw - 48px));max-height:250px;overflow:hidden;z-index:100;background:rgba(13,13,20,0.98);backdrop-filter:blur(24px);border:1px solid rgba(255,255,255,0.14);border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,0.6)}
.cm-dropdown.open{display:block}
.cm-dropdown-list{max-height:195px;overflow-y:auto}
.cm-phone-opt{display:flex;align-items:center;gap:8px;padding:8px 12px;cursor:pointer;font-size:13px;transition:background .15s;color:#cbd5e1}
.cm-phone-opt:hover{background:rgba(124,58,237,0.08)}

