﻿:root {
    --brand: #dea92e; 
    --brand-2: #0b5aa3; 
    --gold: #dea92e; 
    --bg: #F9FAFB;
    --ink: #0f172a;
    --muted: #64748b;
    --card: #ffffff;
    --shadow: 0 18px 40px rgba(2,6,23,.12);
    --shadow2: 0 14px 30px rgba(2,6,23,.18);
    --radius: 18px;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Trebuchet MS', sans-serif !important;
    background: var(--bg);
    color: var(--ink);
}

/* Global container feel */
.page-shell {
    min-height: calc(100vh - 160px);
    background: var(--bg);
}

/* Utility top bar */
.topbar {
    background: linear-gradient(90deg, var(--brand), var(--brand));
    color: #fff;
    font-size: .95rem;
}

    .topbar a {
        color: #fff;
        text-decoration: none;
        opacity: .92;
    }

        .topbar a:hover {
            opacity: 1;
            text-decoration: underline;
        }

    .topbar .sep {
        opacity: .35;
        margin: 0 10px;
    }

    .topbar .cta {
        background: var(--gold);
        border: 0;
        color: #1b1b1b;
        font-weight: 800;
        border-radius: 999px;
        padding: 10px 14px;
        box-shadow: 0 12px 24px rgba(0,0,0,.18);
    }

        .topbar .cta:hover {
            filter: brightness(1.03);
        }

/* Navbar */
.nav-shell {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.navbar {
    padding-top: 14px;
    padding-bottom: 14px;
}

.navbar-brand img {
    max-width: 140px;
    height: auto;
}

.navbar-nav .nav-link {
    color: var(--ink) !important;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 999px;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}

    .navbar-nav .nav-link:hover {
        background: rgba(4,60,104,.08);
        color: var(--brand) !important;
        transform: translateY(-1px);
    }

    /* Active link (works when you add "active" class server-side; see note below) */
    .navbar-nav .nav-link.active {
        background: rgba(222,169,46,.16);
        color: var(--brand) !important;
        border: 1px solid rgba(222,169,46,.28);
    }

/* Buttons */
.btn-primary {
    background: var(--brand) !important;
    border-color: var(--brand) !important;
    border-radius: 999px;
    font-weight: 800;
}

    .btn-primary:hover {
        filter: brightness(1.03);
    }

.btn-secondary {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #1b1b1b !important;
    border-radius: 999px;
    font-weight: 900;
}
.page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 52px 18px;
    color: #fff;
    background: linear-gradient(135deg, rgba(2, 6, 23, .88), rgba(13, 110, 253, .25)), url(/img/welcome.png) center / cover no-repeat !important;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .10);
}
.pay-hero {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 44px 18px;
    color: #fff;
    background: linear-gradient(135deg, rgba(2,6,23,.88), rgba(4,60,104,.35)), url('/img/welcome.png') center/cover no-repeat;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.12);
    margin-bottom: 18px;
}

/* Main content spacing */
main.container {
    padding-top: 28px !important;
    padding-bottom: 40px !important;
}

/* Footer */
footer {
    background: linear-gradient(90deg, var(--brand), var(--brand));
    color: rgba(255,255,255,.92);
    padding: 34px 0;
    margin-top: 40px;
}

    footer a {
        color: rgba(255,255,255,.92);
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

.footer-title {
    color: #fff;
    font-weight: 900;
    letter-spacing: .2px;
    margin-bottom: 10px;
}

.footer-muted {
    color: rgba(255,255,255,.78);
}

/* WhatsApp Floating CTA */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

    .wa-float:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(0,0,0,.26);
        filter: brightness(1.03);
    }

    .wa-float i {
        font-size: 20px;
    }

.wa-label {
    font-weight: 900;
    display: none;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .wa-label {
        display: inline;
    }
}

.wa-pulse {
    position: absolute;
    inset: -7px;
    border-radius: 999px;
    border: 2px solid rgba(37,211,102,.40);
    animation: waPulse 1.8s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0% {
        transform: scale(.95);
        opacity: .85;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}
