﻿/* =========================
   BASE
========================== */
body {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #212529;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Brand */
.brand-accent {
    color: #28a745;
    font-weight: 600;
}

.brand-dark {
    color: #111;
    font-weight: 600;
}

/* =========================
   HEADER – DESKTOP
========================== */
#header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
}

/* Desktop nav layout */
.primary-menu .navbar-nav {
    display: flex;
    align-items: center;
}

    /* ✅ FIX: spacing between menu items */
    .primary-menu .navbar-nav > li {
        margin-left: 28px;
    }

        .primary-menu .navbar-nav > li:first-child {
            margin-left: 0;
        }

.primary-menu .nav-link {
    color: #111;
    font-weight: 500;
    padding: 0;
}

    .primary-menu .nav-link:hover {
        color: #28a745;
    }

/* Dropdown (desktop) */
.primary-menu .dropdown {
    position: relative;
}

.primary-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 10px 0;
    border-radius: 12px;
    display: none;
    background: #fff;
}

.primary-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-weight: 500;
}

    .dropdown-item i {
        color: #28a745;
    }

    .dropdown-item:hover {
        background: rgba(40,167,69,.08);
    }

/* =========================
   HERO (SERVICE PAGES)
========================== */
.hero-wrap {
    position: relative;
    height: 300px;
    min-height: 300px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-mask {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* =========================
   SECTIONS
========================== */
.section {
    padding: 90px 0;
}

.section-light {
    background: #eef0f3;
}

/* =========================
   OVERVIEW BULLETS (CONTENT ONLY)
========================== */
.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-points li {
        display: flex;
        gap: 14px;
        margin-bottom: 12px;
    }

.point-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(40,167,69,.12);
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   HOW IT WORKS (RESTORED)
========================== */
.how-step {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 36px 26px;
    text-align: center;
    position: relative;
}

.step-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 26px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(40,167,69,.12);
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* =========================
   CORE FINANCIAL CAPABILITIES
========================== */
.value-box {
    background: #f8f9fb;
    border-radius: 14px;
    padding: 32px 26px;
    text-align: center;
}

    .value-box i {
        font-size: 22px;
        color: #28a745;
        margin-bottom: 12px;
    }

    .value-box h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

/* =========================
   MOBILE MENU (PAYYED STYLE)
========================== */
.menu-toggle {
    background: none;
    border: none;
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background: #111;
    }

/* Mobile panel */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

    .mobile-menu.open {
        display: block;
    }

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mobile-nav li {
        border-bottom: 1px solid #f1f1f1;
    }

    .mobile-nav a,
    .services-toggle {
        width: 100%;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
        color: #111;
        background: none;
        border: none;
    }

/* Services accordion */
.services-list {
    display: none;
    background: #fafafa;
}

.mobile-services.open .services-list {
    display: block;
}

.services-list a {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

/* =========================
   REMOVE BULLETS – MENUS ONLY
========================== */
.primary-menu ul,
.dropdown-menu,
.mobile-nav,
.services-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

    .dropdown-menu .dropdown-item i,
    .services-list i {
        color: #28a745 !important;
    }

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {

    .primary-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-wrap {
        height: 200px;
        min-height: 200px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .section {
        padding: 60px 0;
    }

    .value-box,
    .how-step {
        padding: 26px 20px;
    }

        .value-box i,
        .step-icon {
            width: 48px;
            height: 48px;
        }
}
