/* ========================
   AFRIGEN - Global Styles
======================== */
:root {
    --primary: #0D1117;
    --secondary: #161B22;
    --card: #1C2128;
    --accent: #F5A623;
    --accent-hover: #E09612;
    --text: #F0F6FC;
    --text-muted: #C9D1D9;
    --border: #30363D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--primary);
    color: var(--text);
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* ========================
   NAVBAR
======================== */
.navbar {
    padding: 15px 0 !important;
}

.navbar-brand {
    font-size: 22px !important;
    font-weight: bold !important;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    padding: 8px 16px !important;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* ========================
   BUTTONS
======================== */
.btn-afrigen {
    background: var(--accent);
    color: #0D1117;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    transition: 0.3s;
}

.btn-afrigen:hover {
    background: var(--accent-hover);
    color: #0D1117;
    transform: translateY(-2px);
}

/* ========================
   CARDS
======================== */
.card {
    background: var(--card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
}

/* ========================
   FORMS
======================== */
.form-control {
    background: #21262D !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: 8px !important;
    padding: 12px !important;
}

.form-control:focus {
    background: #21262D !important;
    border-color: var(--accent) !important;
    color: var(--text) !important;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2) !important;
}

.form-label {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

/* ========================
   HERO SECTION
======================== */
.hero-section {
    padding: 100px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text);
    margin: 15px 0;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ========================
   PRICING CARDS
======================== */
.pricing-card {
    border-radius: 16px !important;
    padding: 40px 30px !important;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--accent) !important;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0D1117;
    padding: 4px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
}

/* ========================
   DASHBOARD
======================== */
.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 5px;
}

/* ========================
   ALERTS
======================== */
.alert-success {
    background: #1A3A2A !important;
    border-color: #27AE60 !important;
    color: #98D4A3 !important;
    border-radius: 8px !important;
}

.alert-danger {
    background: #3A1A1A !important;
    border-color: #E74C3C !important;
    color: #F1948A !important;
    border-radius: 8px !important;
}

/* ========================
   FOOTER
======================== */
.afrigen-footer {
    background: var(--secondary);
    border-top: 2px solid var(--accent);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.afrigen-footer p {
    color: var(--text-muted);
    margin: 5px 0;
}

/* ========================
   RESPONSIVE - Tablet
======================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-section {
        padding: 80px 0 60px;
    }
}

/* ========================
   RESPONSIVE - Mobile
======================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 15px;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .price {
        font-size: 36px;
    }

    .stat-number {
        font-size: 36px;
    }

    .btn-afrigen {
        padding: 10px 20px;
        font-size: 15px;
    }

    .pricing-card {
        padding: 30px 20px !important;
        margin-bottom: 20px;
    }
}

/* ========================
   RESPONSIVE - Small Mobile
======================== */
@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .navbar-brand {
        font-size: 18px !important;
    }

    .btn-afrigen {
        width: 100%;
        margin-bottom: 10px;
    }

    .stat-card {
        margin-bottom: 15px;
    }
}
.btn-check:checked + .btn {
    border-color: #F5A623 !important;
    background: rgba(245, 166, 35, 0.2) !important;
    color: #F5A623 !important;
}

.btn-check + .btn:hover {
    border-color: #F5A623 !important;
    color: #F5A623 !important;
}