﻿/* ========== THEME (logo-inspired palette) ========== */
:root {
    --gold: #D4AF37;
    --navy: #0F1E2D;
    --teal: #1F6F78;
    --red: #8B1E1E;
    --bg: #F5F7FA;
    --text: #111827;
    --muted: #6B7280;
    --card: #FFFFFF;
    --border: rgba(15,30,45,.12);
    --shadow: 0 12px 28px rgba(15,30,45,.12);
    --radius: 16px;
    --max: 1180px;
}

/* ========== BASE ========== */
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a {
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px
}

.small {
    font-size: .95rem;
    color: var(--muted)
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(212,175,55,.14);
    border: 1px solid rgba(212,175,55,.28);
    color: var(--gold);
    font-weight: 600;
}

/* ========== NAV ========== */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15,30,45,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

    .brand img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid rgba(212,175,55,.7);
        background: #000;
    }

    .brand .name {
        display: flex;
        flex-direction: column;
    }

        .brand .name strong {
            color: var(--gold);
            font-size: 1.05rem;
            letter-spacing: .2px
        }

        .brand .name span {
            color: rgba(255,255,255,.75);
            font-size: .85rem
        }

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .nav-links a {
        text-decoration: none;
        color: rgba(255,255,255,.88);
        font-weight: 600;
        font-size: .95rem;
        padding: 10px 10px;
        border-radius: 12px;
    }

        .nav-links a:hover {
            color: var(--gold);
            background: rgba(255,255,255,.06)
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .08s ease, background .2s ease, border-color .2s ease;
    cursor: pointer;
}

    .btn:active {
        transform: translateY(1px)
    }

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: rgba(255,255,255,.16);
}

    .btn-primary:hover {
        background: #e0bd4a
    }

.btn-ghost {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,.18);
}

    .btn-ghost:hover {
        border-color: rgba(212,175,55,.65);
        color: var(--gold)
    }

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: white;
}

/* Dropdown */
.dropdown {
    position: relative
}

    .dropdown > button {
        background: transparent;
        color: rgba(255,255,255,.88);
        border: none;
        font-weight: 800;
        font-size: .95rem;
        padding: 10px 10px;
        border-radius: 12px;
        cursor: pointer;
    }

        .dropdown > button:hover {
            color: var(--gold);
            background: rgba(255,255,255,.06)
        }

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 46px;
    min-width: 270px;
    background: rgba(15,30,45,.98);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
}

    .dropdown-menu a {
        display: block;
        padding: 10px 12px;
        border-radius: 12px;
        color: rgba(255,255,255,.90);
        text-decoration: none;
        font-weight: 700;
        font-size: .92rem;
    }

        .dropdown-menu a:hover {
            background: rgba(255,255,255,.08);
            color: var(--gold)
        }

.dropdown.open .dropdown-menu {
    display: block
}

/* Mobile nav */
@media (min-width: 981px) {
    .mobile-panel,
    .mobile-panel.open {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .nav-links, .nav-cta {
        display: none
    }

    .hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .mobile-panel {
        display: none;
        padding: 12px 0 18px;
    }

        .mobile-panel.open {
            display: block
        }

        .mobile-panel a, .mobile-panel button {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            color: rgba(255,255,255,.92);
            padding: 12px 12px;
            border-radius: 14px;
            font-weight: 800;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.10);
            margin: 8px 0;
        }

            .mobile-panel a:hover, .mobile-panel button:hover {
                color: var(--gold);
                border-color: rgba(212,175,55,.55)
            }

    .mobile-sub {
        margin-top: 8px;
        padding-left: 10px;
    }

        .mobile-sub a {
            background: rgba(255,255,255,.04);
            font-weight: 700;
        }
}

/* ========== HERO ========== */
.hero {
    background: radial-gradient(1000px 500px at 20% 10%, rgba(31,111,120,.35), transparent 60%), radial-gradient(900px 500px at 80% 40%, rgba(212,175,55,.28), transparent 60%), linear-gradient(120deg, var(--navy), #0b1622 60%, #0c2230);
    color: white;
    padding: 64px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
}

.hero h1 {
    margin: 14px 0 10px;
    font-size: 2.6rem;
    line-height: 1.1
}

.hero p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.82);
    font-size: 1.05rem
}

.hero .actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 18px;
}

    .hero-card .kpi {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 14px;
    }

.kpi .box {
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    padding: 12px;
}

    .kpi .box strong {
        display: block;
        font-size: 1.15rem;
        color: var(--gold)
    }

    .kpi .box span {
        font-size: .9rem;
        color: rgba(255,255,255,.75)
    }

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 2.1rem
    }
}

/* ========== SECTIONS / CARDS ========== */
.section {
    padding: 56px 0
}

    .section h2 {
        margin: 0 0 8px;
        font-size: 1.75rem;
        color: var(--navy)
    }

    .section .lead {
        margin: 0 0 18px;
        color: var(--muted)
    }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

@media (max-width: 980px) {
    .grid-3 {
        grid-template-columns: 1fr
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

    .card .pad {
        padding: 18px
    }

    .card h3 {
        margin: 0 0 8px;
        color: var(--navy)
    }

    .card p {
        margin: 0;
        color: var(--muted)
    }

    .card .thumb {
        height: 170px;
        background: #0b1622;
        position: relative;
    }

        .card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: .92
        }

.badge {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(15,30,45,.78);
    border: 1px solid rgba(212,175,55,.35);
    color: var(--gold);
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .82rem;
}

/* ========== CTA STRIP ========== */
.cta {
    background: linear-gradient(90deg, rgba(31,111,120,.22), rgba(212,175,55,.18));
    border: 1px solid rgba(15,30,45,.12);
    border-radius: 24px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

    .cta strong {
        font-size: 1.1rem;
        color: var(--navy)
    }

    .cta .small {
        max-width: 640px
    }

@media (max-width: 980px) {
    .cta {
        flex-direction: column;
        align-items: flex-start
    }
}

/* ========== PAGE HERO (internal pages) ========== */
.page-hero {
    padding: 42px 0 26px;
    background: linear-gradient(120deg, rgba(15,30,45,.96), rgba(31,111,120,.55));
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.breadcrumb {
    color: rgba(255,255,255,.76);
    font-weight: 700;
    font-size: .9rem
}

.page-hero h1 {
    margin: 10px 0 6px;
    font-size: 2.1rem
}

.page-hero p {
    margin: 0;
    color: rgba(255,255,255,.82)
}

/* ========== CONTENT ========== */
.content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start;
}

@media (max-width: 980px) {
    .content {
        grid-template-columns: 1fr
    }
}

.panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted)
}

    .list li {
        margin: 8px 0
    }

/* ========== FOOTER ========== */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.86);
    padding: 34px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
    //display: grid;
    //grid-template-columns: 1.2fr .8fr;
    //gap: 18px;
}

    .footer-grid a {
        color: var(--gold);
        text-decoration: none;
        font-weight: 800
    }

        .footer-grid a:hover {
            text-decoration: underline
        }

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr
    }
}

.nav-links a.active {
    color: var(--gold);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(212,175,55,.20);
}

/* Accordion base */
.accordion {
    margin-top: 20px;
}

.acc-item {
    margin-bottom: 10px;
}

.acc-btn {
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 600;
    transition: background .2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

    /* Level styling using your palette */
    .acc-btn.level1 {
        background: var(--navy);
        color: white;
        border: 1px solid var(--border);
    }

    .acc-btn.level2 {
        background: rgba(31,111,120,.12);
        color: var(--navy);
        margin-left: 14px;
    }

    .acc-btn.level3 {
        background: rgba(212,175,55,.10);
        color: var(--navy);
        margin-left: 28px;
        font-weight: 500;
    }

    /* Hover */
    .acc-btn:hover {
        filter: brightness(1.05);
    }

    /* Arrow */
    .acc-btn::after {
        content: "+";
        font-size: 1.2rem;
        transition: transform .25s ease;
    }

    .acc-btn.active::after {
        content: "–";
    }

/* --- Accordion polish --- */
.accordion {
    margin-top: 18px;
}

.acc-item {
    margin-bottom: 10px;
}

.acc-btn {
    width: 100%;
    text-align: left;
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: transform .12s ease, filter .2s ease, background .2s ease;
    position: relative;
}

    /* Levels using your palette */
    .acc-btn.level1 {
        background: var(--navy);
        color: #fff;
    }

    .acc-btn.level2 {
        background: rgba(31,111,120,.12);
        color: var(--navy);
        margin-left: 14px;
    }

    .acc-btn.level3 {
        background: rgba(212,175,55,.10);
        color: var(--navy);
        margin-left: 28px;
        font-weight: 500;
    }

    /* Hover / active */
    .acc-btn:hover {
        filter: brightness(1.05);
    }

    .acc-btn:active {
        transform: translateY(1px);
    }

    /* Accessible focus ring */
    .acc-btn:focus-visible {
        outline: 3px solid rgba(212,175,55,.55);
        outline-offset: 2px;
    }

    /* Chevron */
    .acc-btn .chev {
        width: 12px;
        height: 12px;
        flex: 0 0 auto;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform .2s ease;
        opacity: .9;
    }

    .acc-btn.active .chev {
        transform: rotate(225deg);
    }

/* Panel open/close (no clipping) */
.acc-panel {
    display: none;
    overflow: hidden;
}

    .acc-panel.open {
        display: block;
        animation: accFadeSlide .18s ease;
    }

@keyframes accFadeSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content styling */
.acc-panel .acc-content {
    padding: 12px 18px;
    margin-left: 28px;
    background: rgba(255,255,255,.9);
    border-left: 3px solid var(--gold);
    border-radius: 0 0 10px 10px;
    color: #333;
}

/* Mobile spacing */
@media(max-width: 700px) {
    .acc-btn.level2 {
        margin-left: 8px;
    }

    .acc-btn.level3 {
        margin-left: 16px;
    }

    .acc-panel .acc-content {
        margin-left: 16px;
    }
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
    justify-content: center; /* CENTER ALWAYS */
}


    .footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .footer-social svg {
        width: 20px;
        height: 20px;
        fill: var(--gold);
        transition: fill .2s ease;
    }

    /* Hover effects */
    .footer-social a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0,0,0,.25);
    }

    /* Brand colour accents */
    .footer-social a:nth-child(1):hover {
        background: #1877f2;
    }
    /* Facebook */
    .footer-social a:nth-child(2):hover {
        background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
    }
    /* Instagram */
    .footer-social a:nth-child(3):hover {
        background: #0a66c2;
    }
    /* LinkedIn */
    .footer-social a:nth-child(4):hover {
        background: #25d366;
    }
    /* WhatsApp */

    .footer-social a:hover svg {
        fill: #fff;
    }
    /* X */
    .footer-social a:nth-child(4):hover {
        background: #000000;
    }


/* Mobile centering */
@media(max-width:700px) {
    .footer-social {
        justify-content: center;
    }
}



