/* --- 1. GLOBAL LUXURY VARIABLES --- */
:root {
    --emerald-dark: #064e3b; /* Deep Heritage Green */
    --emerald-light: #10b981;
    --cream: #fdfbf7; /* Softer, high-end white */
    --slate: #334155;
    --gold-subtle: #d4af37;
    --header-height: 85px;
}

/* Top Bar - High Contrast for Critical Info */
.top-utility-bar {
    background: var(--slate);
    color: var(--cream);
    padding: 8px 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.reg-badge {
    background: var(--gold-subtle);
    color: var(--emerald-dark);
    padding: 2px 10px;
    border-radius: 2px;
    font-weight: 800;
    margin-right: 10px;
}

/* Navbar: The "Official Ledger" Style */
.navbar {
    background: var(--cream) !important;
    padding: 12px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid var(--emerald-dark);
}


.brand-name {
    font-family: 'Lora', serif; /* Classic, authoritative font */
    font-weight: 800;
    color: var(--emerald-dark) !important;
    font-size: 1.9rem;
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-tagline {
    font-size: 10px;
    font-weight: 700;
    color: var(--slate);
    letter-spacing: 2px;
    margin-top: 4px;
    display: block;
}

.brand-text-border {
    border-left: 4px solid var(--emerald-dark) !important;
    padding-left: 18px;
}

/* Nav Links: Elegant & Clear */
.navbar-nav .nav-link {
    color: var(--emerald-dark) !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 18px !important;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--emerald-light) !important;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 4px;
}

/* Secure Button: The "Safe Deposit" Glow */
.btn-secure-payment {
    background: var(--emerald-dark) !important;
    color: white !important;
    border-radius: 4px !important;
    font-size: 11px;
    font-weight: 800;
    padding: 12px 24px !important;
    border: 1px solid var(--emerald-dark);
    transition: all 0.3s;
}

.btn-secure-payment:hover {
    background: white !important;
    color: var(--emerald-dark) !important;
    box-shadow: 0 6px 15px rgba(6, 78, 59, 0.2);
}

/* --- 5. PROFESSIONAL FOOTER --- */
.footer-main {
    background-color: var(--emerald-dark);
    color: var(--cream);
    padding: 80px 0 40px 0;
    position: relative;
}

/* Decorative Gold Top Border */
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-subtle), transparent);
}

.footer-main h5 {
    font-family: 'Lora', serif;
    color: var(--gold-subtle);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(253, 251, 247, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    display: inline-block;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white !important;
    padding-left: 8px;
}

/* Social Icons: Classic Monochromatic */
.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px; /* Matches the buttons */
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--gold-subtle);
    color: var(--emerald-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.8rem;
    color: rgba(253, 251, 247, 0.5);
}