:root{
    /* 🔴 PRIMARY (MAROON THEME) */
    --primary-color: #ff0040; /* rich maroon */
    --primary-color-rgb: 255, 0, 64;

    /* 🔴 HOVER / DARK SHADE */
    --primary-dark: #5a0016;

    /* 🔴 LIGHT SHADE (IMPORTANT for backgrounds) */
    --primary-light: #f8e6ea;

    /* SECONDARY */
    --secondary-color: #000000;
    --secondary-color-rgb: 0, 0, 0;

    /* KEEP THESE (no need to change) */
    --success-color: #28a745;
    --success-color-rgb: 40, 167, 69;
    --danger-color: #dc3545;
    --danger-color-rgb: 220, 53, 69;
    --warning-color: #ffc107;
    --warning-color-rgb: 255, 193, 7;
    --info-color: #17a2b8;
    --info-color-rgb: 23, 162, 184;

    --light-color: #f8f9fa;
    --light-color-rgb: 248, 249, 250;
    --dark-color: #212529;
    --dark-color-rgb: 33, 37, 41;

    --white-color: #ffffff;
    --white-color-rgb: 255, 255, 255;
    --black-color: #000000;
    --black-color-rgb: 0, 0, 0;

    /* UI */
    --font-family: 'Poppins', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    --transition-speed: 0.3s;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--light-color);
    color: var(--dark-color);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

.hero-fadedown{
    animation: fadeDown 1s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.global-error {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(var(--danger-color-rgb),0.95);
    color: var(--white-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    z-index: 9999;
    animation: slideIn 0.5s ease;
}

.global-success {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(var(--success-color-rgb),0.95);
    color: var(--white-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    z-index: 9999;
    animation: slideIn 0.5s ease;
}

.global-info {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(var(--info-color-rgb),0.95);
    color: var(--white-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    z-index: 9999;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* =====================
   PAGE HERO (shared)
   Each page sets --hero-bg to its own image URL.
   ===================== */
.page-hero {
    height: 40vh;
    position: relative;
    background: linear-gradient(
        rgba(var(--primary-color-rgb), 0.85),
        rgba(0,0,0,0.6)
    ),
    var(--hero-bg, none) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    overflow: hidden;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.page-hero p {
    margin-top: 10px;
    opacity: 0.9;
}