:root {
    --primary-color: #ffffff;
    /* White Header Background */
    --navbar-bg: #ffffff;
    --footer-bg: #f8fafc;
    /* Very Light Grey for Footer */
    --brand-navy: #0d2137;
    /* Navy from Logo */
    --brand-gold: #c19b4a;
    /* Gold from Logo */
    --secondary-color: #415a77;
    --dark-color: #0d2137;
    /* Change dark color to Brand Navy */
    --light-color: #f8fafc;
    --accent-color: #c19b4a;
    --success-color: #10b981;
    --whatsapp-color: #25d366;
    --font-main: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(rgba(30, 58, 95, 0.8), rgba(15, 23, 42, 0.9)), url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.svg');
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--whatsapp-color);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

/* Premium Button */
.btn-primary {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #a6853f;
    border-color: #a6853f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 155, 74, 0.3);
}

/* Card Styles */
.card {
    border: 1px solid rgba(30, 58, 95, 0.05);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.badge.bg-primary {
    background-color: var(--brand-navy) !important;
}

.text-primary {
    color: var(--brand-navy) !important;
}

/* Navbar & Footer Overrides */
.navbar {
    background-color: var(--navbar-bg) !important;
}

.navbar-nav .nav-link {
    color: var(--brand-navy) !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--brand-gold) !important;
}

footer {
    background-color: var(--footer-bg);
    color: var(--brand-navy);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer .footer-title {
    color: var(--brand-navy);
    font-weight: 700;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--brand-gold);
}

footer .text-muted {
    color: var(--secondary-color) !important;
}