/* =========================================================
   AFADWU PREMIUM UI SYSTEM
   Version: 1.0
   Stack: Bootstrap 5.x
========================================================= */

/* ================================
   ROOT VARIABLES
================================ */

:root {

    /* Brand Colors */
    --af-black: #000000;
    --af-red: #CC0000;
    --af-gold: #DAA520;
    --af-white: #FFFFFF;
    --af-light: #F8F9FA;
    --af-gray: #6C757D;
    --af-dark-gray: #212529;

    /* Typography */
    --af-heading-font: 'Poppins', sans-serif;
    --af-body-font: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: all .2s ease;
    --transition-normal: all .35s ease;
    --transition-slow: all .5s ease;

    /* Spacing */
    --section-padding: 120px;
}

/* ================================
   GLOBAL RESET
================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--af-body-font);
    color: var(--af-dark-gray);
    background: var(--af-white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ================================
   TYPOGRAPHY
================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--af-heading-font);
    font-weight: 700;
    color: var(--af-black);
    line-height: 1.2;
}

.display-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--af-gray);
    max-width: 700px;
}


/* alt alerts */
.alt_alert_secondary {
    background-color: #e2e3e5;
}

.alt_alert_danger {
    background-color: #f8d7da;
}

.alt_alert_success {
    background-color: #d4edda;
}

.alt_alert_warning {
    background-color: #fff3cd;
}

.alt_alert_info {
    background-color: #d1ecf1;
}

.alt_alert_light {
    background-color: #fefefe;
}

.alt_alert_dark {
    background-color: #d6d8d9;
}

/* ================================
   SECTION SYSTEM
================================ */

.section-padding {
    padding: var(--section-padding) 0;
}

.section-light {
    background: var(--af-white);
}

.section-dark {
    background: var(--af-black);
    color: var(--af-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--af-white);
}

.section-gray {
    background: var(--af-light);
}

/* ================================
   BUTTON SYSTEM
================================ */

.btn-af-primary {
    background: var(--af-red);
    color: var(--af-white);
    border: none;
    padding: 16px 34px;
    border-radius: 60px;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-af-primary:hover {
    transform: translateY(-3px);
    background: #a80000;
    color: var(--af-white);
}

.btn-af-dark {
    background: var(--af-black);
    color: var(--af-white);
    border-radius: 60px;
    padding: 16px 34px;
    transition: var(--transition-normal);
}

.btn-af-dark:hover {
    background: #1c1c1c;
    color: var(--af-white);
}

.btn-af-outline {
    border: 2px solid var(--af-gold);
    color: var(--af-gold);
    border-radius: 60px;
    padding: 14px 32px;
    transition: var(--transition-normal);
}

.btn-af-outline:hover {
    background: var(--af-gold);
    color: var(--af-black);
}

/* ================================
   CARD SYSTEM
================================ */

.af-card {
    background: var(--af-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.af-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.af-card-image {
    overflow: hidden;
}

.af-card-image img {
    transition: var(--transition-slow);
}

.af-card:hover .af-card-image img {
    transform: scale(1.08);
}

.af-card-body {
    padding: 2rem;
}

/* ================================
   CATEGORY TAGS
================================ */

.af-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(218, 165, 32, .1);
    color: var(--af-gold);
    padding: 8px 18px;
    border-radius: 60px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ================================
   TRUST BAR
================================ */

.trust-bar {
    background: var(--af-black);
    color: var(--af-gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.trust-bar-track {
    display: inline-block;
    animation: scrollTrust 30s linear infinite;
}

@keyframes scrollTrust {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ================================
   HERO SYSTEM
================================ */

.hero-section {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .88),
            rgba(0, 0, 0, .55));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    color: var(--af-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ================================
   STATISTICS
================================ */

.stats-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--af-gold);
    line-height: 1;
}

.stats-label {
    color: rgba(255, 255, 255, .75);
    margin-top: .5rem;
}

/* ================================
   ICON BOXES
================================ */

.icon-box {
    padding: 2.5rem;
    border-radius: var(--radius-md);
    background: var(--af-white);
    transition: var(--transition-normal);
    height: 100%;
}

.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.icon-box-icon {
    width: 80px;
    height: 80px;
    background: rgba(218, 165, 32, .1);
    color: var(--af-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* ================================
   IMAGE SYSTEM
================================ */

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   FORMS
================================ */

.form-control,
.form-select {
    min-height: 58px;
    border-radius: 14px;
    border: 1px solid #dee2e6;
    padding-left: 18px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--af-gold);
    box-shadow: 0 0 0 .2rem rgba(218, 165, 32, .15);
}

/* ================================
   PREMIUM DIVIDERS
================================ */

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--af-gold);
    border-radius: 10px;
    margin: 1.5rem 0;
}

/* ================================
   ANIMATION HELPERS
================================ */

.hover-lift {
    transition: var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
    transition: .8s ease;
}

/* ================================
   GLASSMORPHISM
================================ */

.glass-dark {
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* ================================
   FOOTER
================================ */

.footer-dark {
    background: var(--af-black);
    color: rgba(255, 255, 255, .75);
}

.footer-dark a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-dark a:hover {
    color: var(--af-gold);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    :root {
        --section-padding: 90px;
    }

    .display-title {
        line-height: 1.15;
    }

    .hero-section {
        text-align: center;
    }

}

@media (max-width: 767px) {

    :root {
        --section-padding: 70px;
    }

    .af-card-body {
        padding: 1.5rem;
    }

    .icon-box {
        padding: 2rem;
    }

}





/* =========================================================
   NAVBAR SYSTEM
========================================================= */

.af-navbar {
    padding: 24px 0;
    transition: all .4s ease;
    z-index: 999;
}

.af-navbar.scrolled {
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
}

.navbar-logo {
    width: 56px;
    height: auto;
}

.logo-title {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
}

.logo-subtitle {
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
}

.af-navbar .nav-link {
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    margin: 0 14px;
    position: relative;
    transition: var(--transition-fast);
}

.af-navbar .nav-link:hover,
.af-navbar .nav-link.active {
    color: var(--af-gold);
}

.af-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: var(--af-gold);
    transition: .3s ease;
}

.af-navbar .nav-link:hover::after,
.af-navbar .nav-link.active::after {
    width: 100%;
}

/* =========================================================
   MEGA MENU
========================================================= */

.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 24px 24px;
    padding: 40px 0;
    margin-top: 25px;
    background: #fff;
}

.mega-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mega-link {
    display: block;
    color: var(--af-dark-gray);
    text-decoration: none;
    margin-bottom: 14px;
    transition: .2s ease;
    font-weight: 500;
}

.mega-link:hover {
    color: var(--af-red);
    transform: translateX(5px);
}

.mega-feature-card {
    background: var(--af-light);
    padding: 2rem;
    border-radius: 24px;
    height: 100%;
}

.resource-mini-card {
    background: var(--af-light);
    padding: 1.5rem;
    border-radius: 18px;
    height: 100%;
    transition: .3s ease;
}

.resource-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.resource-mini-card i {
    color: var(--af-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* =========================================================
   CTA
========================================================= */

.navbar-cta {
    animation: pulseCTA 2.5s infinite;
}

@keyframes pulseCTA {

    0% {
        box-shadow: 0 0 0 0 rgba(204, 0, 0, .5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(204, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
    }

}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-nav-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-weight: 500;
    transition: .2s ease;
}

.mobile-nav-links a:hover {
    color: var(--af-gold);
    padding-left: 8px;
}

.offcanvas {
    width: 320px !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1199px) {

    .af-navbar {
        background: rgba(0, 0, 0, .9);
        backdrop-filter: blur(12px);
        padding: 14px 0;
    }

}




/* =========================================================
   TIMELINE
========================================================= */

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(218, 165, 32, .2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    display: inline-block;
    background: var(--af-gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

@media(max-width:991px) {

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
        padding-right: 0;
    }

}


/* =========================================================
   SECTOR LISTS
========================================================= */

.sector-list {
    padding-left: 0;
    list-style: none;
}

.sector-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    font-weight: 500;
}

.sector-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--af-gold);
    font-weight: 700;
}



/* =========================================================
   READING PROGRESS
========================================================= */

#readingProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--af-red);
    z-index: 9999;
}

/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-content img {
    max-width: 100%;
    border-radius: 20px;
    margin: 2rem 0;
}

.article-content blockquote {
    border-left: 4px solid var(--af-gold);
    padding-left: 1.5rem;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--af-gray);
    margin: 2rem 0;
}


/* =========================================================
   MEMBERSHIP FORM
========================================================= */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.membership-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.progress-step {
    text-align: center;
    opacity: .4;
    transition: .3s;
}

.progress-step.active {
    opacity: 1;
}

.progress-step span {
    width: 60px;
    height: 60px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    font-weight: 700;
}

.progress-step.active span {
    background: var(--af-red);
    color: #fff;
}


/* =========================================================
   RESOURCE CENTER
========================================================= */

.resource-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    transition: .3s;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: rgba(204, 0, 0, .08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-icon i {
    font-size: 2rem;
    color: var(--af-red);
}

.resource-content {
    flex: 1;
}

.resource-meta {
    margin-top: 1rem;
    color: var(--af-gray);
    font-size: .95rem;
}

.resource-action {
    align-self: center;
}

@media(max-width:768px) {

    .resource-card {
        flex-direction: column;
    }

}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-info-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(204, 0, 0, .08);
    color: var(--af-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    background: #000;
    color: #fff;
    padding: .7rem 0;
    font-size: .95rem;
    position: relative;
    z-index: 1050;
}

.announcement-link {
    color: var(--af-gold);
    font-weight: 600;
    text-decoration: none;
}

.announcement-link:hover {
    color: #fff;
}

/* =========================================================
   PREMIUM NAVBAR
========================================================= */

.premium-navbar {
    transition: all .35s ease;
    padding: 1.3rem 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(14px);
}

.premium-navbar.scrolled {
    padding: .7rem 0;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

#scrollIndicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--af-red);
    z-index: 99999;
}

/* =========================================================
   BACK TO TOP
========================================================= */

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--af-red);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

#backToTop:hover {
    transform: translateY(-3px);
}


/* =========================================================
   FOOTER
========================================================= */

.premium-footer {
    border-top: 7px solid #CC0000;
    background: #000;
    color: #fff;
    padding: 100px 0 40px;
}

.footer-title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--af-gold);
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--af-red);
}

.footer-divider {
    border-color: rgba(255, 255, 255, .1);
    margin: 60px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, .6);
}


/* =========================================================
   MOBILE CTA
========================================================= */

.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 12px;
    z-index: 9999;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    background: var(--af-red);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

/* =========================================================
   COOKIE CONSENT
========================================================= */

#cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    z-index: 99999;
}

.cookie-inner p {
    margin-bottom: 1rem;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus {
    outline: 3px solid var(--af-gold);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}



/* =========================================================
   MEMBER DASHBOARD
========================================================= */

.member-sidebar {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.member-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.member-status {
    background: rgba(0, 128, 0, .1);
    color: green;
    padding: .5rem 1rem;
    border-radius: 50px;
    display: inline-block;
}

.member-menu {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.member-menu li {
    margin-bottom: 1rem;
}

.member-menu a {
    display: block;
    padding: 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: #000;
    transition: .3s;
}

.member-menu a:hover {
    background: #f5f5f5;
}

.dashboard-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.digital-card {
    position: relative;
    background: linear-gradient(135deg,
            #000,
            #222);
    color: #fff;
    padding: 3rem;
    border-radius: 30px;
    overflow: hidden;
}

.digital-card-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(218, 165, 32, .25),
            transparent 35%);
}

.digital-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* =========================================================
   ADMIN PANEL
========================================================= */

.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f5f7fb;
}

.admin-sidebar {
    width: 280px;
    background: #000;
    color: #fff;
    padding: 2rem;
    position: fixed;
    inset: 0 auto 0 0;
}

.admin-brand {
    margin-bottom: 3rem;
}

.admin-menu {
    list-style: none;
    padding: 0;
}

.admin-menu li {
    margin-bottom: 1rem;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    border-radius: 14px;
    transition: .3s;
}

.admin-menu a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.admin-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.admin-stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.admin-stat-card i {
    font-size: 2rem;
    color: var(--af-red);
}

.admin-login-body {
    background: #111;
}

.admin-login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-card {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    padding: 3rem;
}


/* =========================================================
   BENEFITS PAGE
========================================================= */

.trust-strip {
    background: #000;
    color: #fff;
    padding: 2rem 0;
}

.benefit-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: rgba(218, 165, 32, .12);
    color: var(--af-gold);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.premium-accordion .accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
}

.premium-accordion .accordion-button {
    padding: 1.5rem;
    font-weight: 700;
}

.timeline-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 2rem;
    color: #fff;
    height: 100%;
}

.timeline-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--af-red);
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.membership-cta-section {
    padding: 120px 0;
    background: #fff;
}


/* =========================================================
   SECTOR MINI CARDS
========================================================= */

.sector-mini-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    height: 100%;
}

.sector-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.sector-mini-card i {
    font-size: 2.5rem;
    color: var(--af-gold);
    margin-bottom: 1.5rem;
}

.sector-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.sector-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, .8);
}

.sector-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--af-red);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}