/* ============================================
   AQM BD - About Page Styles
   Extracted from about.php
   ============================================ */

:root {
    --primary: #1a237e;
    --primary-light: #3949ab;
    --primary-dark: #0d1452;
    --accent: #ff6f00;
    --accent-light: #ff8f00;
    --success: #2e7d32;
    --bg: #f4f6f9;
    --card-bg: #ffffff;
    --text: #1a1a2e;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --radius: 10px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 14px; line-height: 1.6; color: var(--text); background: var(--bg); }

.top-bar { background: var(--primary-dark); padding: 8px 30px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.8); }
.top-bar a { color: #ffd54f; text-decoration: none; font-weight: 600; }
.header { background: var(--primary); padding: 18px 30px; }
.header-inner { max-width: 1600px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo img { height: 50px; border-radius: 8px; }
.logo-text { color: #fff; }
.logo-title { font-size: 24px; font-weight: 800; letter-spacing: 3px; }
.logo-sub { font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 1px; }
.container-link { display: flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--accent); border-radius: 8px; color: #fff; text-decoration: none; font-weight: 700; font-size: 13px; position: relative; }
.container-badge { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; background: #f44336; color: #fff; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.nav { background: #fff; border-bottom: 2px solid var(--border); padding: 0 30px; display: flex; align-items: center; gap: 0; overflow-x: auto; }
.nav-link { padding: 14px 24px; color: var(--text-light); text-decoration: none; font-weight: 600; font-size: 13px; border-bottom: 3px solid transparent; white-space: nowrap; transition: all 0.2s; }
.nav-link:hover { color: var(--primary); background: #f8f9ff; }
.nav-link.active { color: var(--primary); border-bottom-color: var(--accent); font-weight: 700; }

.main { max-width: 1000px; margin: 0 auto; padding: 40px 30px; }

.hero { background: linear-gradient(135deg, var(--primary) 0%, #283593 50%, var(--accent) 100%); border-radius: var(--radius); padding: 50px 40px; color: #fff; margin-bottom: 40px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.hero p { font-size: 16px; color: rgba(255,255,255,0.9); max-width: 700px; line-height: 1.8; }

.section { margin-bottom: 40px; }
.section-title { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.section-content { background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); padding: 24px 28px; }
.section-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 12px; font-size: 14px; }
.section-content p:last-child { margin-bottom: 0; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 16px; }
.value-card { background: #f8f9ff; border-radius: 8px; padding: 20px; border-left: 4px solid var(--primary); }
.value-card h3 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 16px; }
.stat-card { text-align: center; padding: 20px; background: #f8f9ff; border-radius: 8px; }
.stat-value { font-size: 28px; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

.footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 30px; text-align: center; font-size: 12px; margin-top: 60px; }
.footer a { color: #ffd54f; text-decoration: none; }
.footer p + p { margin-top: 8px; }

/* Utility classes */
.mt-20 { margin-top: 20px; }
.link-primary { color: var(--primary); font-weight: 600; }

@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 12px; }
    .main { padding: 24px 16px; }
    .hero { padding: 30px 24px; }
    .hero h1 { font-size: 24px; }
}
