﻿/* ═══════════════════════════════════════════════════════════════ LAMID REWAY FOUNDATION — site.css ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --lrf-navy: #1a3a5c;
    --lrf-navy2: #0d1f30;
    --lrf-gold: #c9a227;
    --lrf-gold2: #e6b82a;
    --lrf-light: #f5f7fa;
}


body {
    font-family: 'Inter', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

/* ── Utility ── */

.bg-navy .bg-gold .text-navy .text-gold
.btn-navy {
    background-color: var(--lrf-navy) !important;
}

{
    background-color: var(--lrf-gold) !important;
}

{
    color: var(--lrf-navy) !important;
}

{
    color: var(--lrf-gold) !important;
}

{
    background: var(--lrf-navy);
    color: #fff;
    border: none;
}

.btn-navy:hover {
    background: #245075;
    color: #fff;
}

.btn-outline-navy {
    border: 2px solid var(--lrf-navy);
    color: var(--lrf-navy);
    background: transparent;
}

    .btn-outline-navy:hover {
        background: var(--lrf-navy);
        color: #fff;
    }

/* ── Top Bar ── */ .top-bar {
    background: var(--lrf-navy2);
    color: #bbb;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(201,162,39,0.3);
}

/* ── Navbar ── */ .lrf-navbar {
    background: var(--lrf-navy);
    box-shadow: 0 3px 20px rgba(0,0,0,0.35);
    padding: 0.65rem 0;
}

    .lrf-navbar .nav-link {
        color: rgba(255,255,255,0.85) !important;
        font-weight: 500;
        font-size: 0.95rem;
        padding: 0.5rem 0.9rem;
        border-radius: 6px;
        transition: all 0.2s;
    }

        .lrf-navbar .nav-link:hover {
            color: var(--lrf-gold) !important;
            background: rgba(255,255,255,0.07);
        }

.brand-icon {
    font-size: 2rem;
    color: var(--lrf-gold);
    line-height: 1;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lrf-gold);
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn-gold {
    background: var(--lrf-gold);
    color: var(--lrf-navy);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.45rem 1.3rem;
    transition: all 0.3s;
}

    .btn-gold:hover {
        background: var(--lrf-gold2);
        color: var(--lrf-navy);
        transform: translateY(-1px);
        box-shadow: 0 5px 18px rgba(201,162,39,0.45);
    }

/* ── Hero Carousel ── */
.hero-carousel .carousel-item {
    height: 88vh;
    min-height: 520px;
}

.hero-carousel img {
    width: 100%;
    height: 100%;
    object-ﬁt: cover;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(13,31,48,0.88) 0%, rgba(26,58,92,0.65) 100%);
}

.hero-carousel .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    max-width: 100%;
}

    .hero-carousel .carousel-caption h1 {
        font-family: 'Playfair Display', serif;
        text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }

.badge.bg-gold {
    background: var(--lrf-gold) !important;
    color: var(--lrf-navy);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── Stats Bar ── */
.stats-bar {
    border-top: 3px solid var(--lrf-gold);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
}

.stat-item::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--lrf-gold);
    margin: 0.4rem auto 0;
}

/* ── Section titles ── */
.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--lrf-navy);
    font-weight: 700;
}

.section-divider {
    width: 55px;
    height: 4px;
    background: var(--lrf-gold);
    border-radius: 2px;
    margin: 0.6rem 0 1.4rem;
}

/* ── Workﬂow ── */
.workﬂow-step {
    position: relative;
}

.workﬂow-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--lrf-navy);
    color: var(--lrf-gold);
    display: ﬂex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 28px rgba(26,58,92,0.28);
    transition: transform 0.3s;
}

.workﬂow-step:hover .workﬂow-icon {
    transform: scale(1.08);
}

.workﬂow-connector {
    position: absolute;
    right: -14%;
    top: 22%;
    color: var(--lrf-gold);
}


/* ── Service Cards ── */
.service-card {
    border-radius: 14px !important;
    box-shadow: 0 4px 22px rgba(0,0,0,0.07) !important;
    transition: all 0.3s;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.14) !important;
    }

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lrf-navy), #2a5a8c);
    color: var(--lrf-gold);
    display: ﬂex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--lrf-navy) 0%, #1a5276 100%);
}


/* ── Page Header ── */ .page-header {
    background: linear-gradient(135deg, var(--lrf-navy) 0%, #24527a 100%);
    color: white;
    padding: 3.5rem 0;
    position: relative;
    overﬂow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: -60%;
        right: -8%;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(201,162,39,0.08);
    }


/* ── Footer ── */
.lrf-footer {
    background: var(--lrf-navy2);
    color: #ccc;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    color: var(--lrf-gold);
    font-size: 1.05rem;
}

.footer-heading {
    color: var(--lrf-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li a {
        color: #9aa;
        text-decoration: none;
        font-size: 0.88rem;
        display: block;
        margin-bottom: 0.45rem;
        transition: color 0.2s;
    }

        .footer-links li a:hover {
            color: var(--lrf-gold);
        }

.footer-contact {
    list-style: none;
    padding: 0;
}

    .footer-contact li {
        margin-bottom: 0.5rem;
        color: #9aa;
        font-size: 0.88rem;
    }

.footer-divider {
    border-color: rgba(255,255,255,0.1);
}

.social-link {
    display: inline-ﬂex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ccc;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-link:hover {
        background: var(--lrf-gold);
        color: var(--lrf-navy);
    }


/* ── Forms ── */
.lrf-form .form-control, .lrf-form .form-select {
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

    .lrf-form .form-control:focus, .lrf-form .form-select:focus {
        border-color: var(--lrf-navy);
        box-shadow: 0 0 0 0.2rem rgba(26,58,92,0.15);
    }

.lrf-form .form-label {
    font-size: 0.9rem;
    color: #444;
}


/* ── Step Tabs ── */
.step-tab {
    cursor: default;
    transition: all 0.3s;
}

    .step-tab.active {
        background: var(--lrf-navy);
    }

        .step-tab.active .step-num,
        .step-tab.active .step-name {
            color: white !important;
        }

    .step-tab.completed {
        background: rgba(26,58,92,0.12);
    }

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lrf-navy);
}

.step-name {
    color: #777;
    margin-top: 0.1rem;
}

/* ── Dashboard Table ── */ .lrf-table th {
    background: var(--lrf-navy);
    color: white;
    font-weight: 500;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.85rem 0.75rem;
    white-space: nowrap;
}

.lrf-table td {
    vertical-align: middle;
    padding: 0.7rem 0.75rem;
    font-size: 0.88rem;
}

.lrf-table tbody tr:hover {
    background: rgba(26,58,92,0.04);
}

/* ── Stat Cards ── */
.stat-card {
    border-left: 4px solid var(--lrf-gold) !important;
}

.total-card {
    border-left-color: var(--lrf-navy) !important;
}

.downloaded-card {
    border-left-color: #28a745 !important;
}

.not-downloaded-card {
    border-left-color: #ffc107 !important;
}

.pending-card {
    border-left-color: #17a2b8 !important;
}

/* ── Animations ── */ @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.65s ease forwards;
    opacity: 0;
}


/* ── Responsive ── */ 
@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        height: 62vh;
    }

    .workﬂow-connector {
        display: none;
    }

    .hero-carousel .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .stat-num {
        font-size: 1.7rem;
    }
}
