/* ============================
   COLOR VARIABLES (PuroCleans)
============================= */
:root {
    --navy-blue: #08132b;     /* Deeper Navy */
    --medium-blue: rgba(12, 36, 74, 0.80); 
    --light-blue: #4fa3ff; 
    --soft-blue: #badaff;
    --white: #ffffff;
    --gold: #d4af37;         /* Classic Metallic Gold */
}

/* ============================
   GLOBAL BACKGROUNDS
============================= */
body {
    background-color: var(--navy-blue) !important;
}

.bg-dark-blue {
    background-color: var(--navy-blue) !important;
}

.bg-light-blue {
    background-color: var(--medium-blue) !important;
}

/* ============================
   TEXT COLORS
============================= */
.text-light-blue { color: var(--light-blue) !important; }
.text-soft-blue { color: var(--soft-blue) !important; }
.text-gold { color: var(--gold) !important; }

/* ============================
   BORDERS
============================= */
.border-light-blue { border-color: var(--light-blue) !important; }
.border-gold { border-color: var(--gold) !important; }

/* ============================
   NAVBAR TOGGLER
============================= */
.blue-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================
   BUTTONS
============================= */
.btn-blue {
    background-color: var(--gold) !important;
    color: var(--navy-blue) !important;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-blue:hover {
    background-color: #ebc75e !important;
    transform: translateY(-2px);
}

/* Hero Button */
.hero .btn-blue {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.hero .btn-blue:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* ============================
   DIVIDERS
============================= */
.blue-divider {
    height: 3px;
    background: var(--gold);
    width: 100%;
    margin: 20px 0;
}

/* ============================
   FOOTER
============================= */
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--gold) !important;
    padding-left: 5px;
}

/* ============================
   HERO SECTION (Updated Overlay)
============================= */
.hero {
    position: relative;
    padding: 100px 0;
    background: url('../images/cleaning-background.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(8, 19, 43, 0.6),
        rgba(8, 19, 43, 0.95)
    );
    z-index: 1;
}

.hero .container,
.hero img,
.hero h1,
.hero p,
.hero .btn {
    position: relative;
    z-index: 3;
    color: var(--white);
}

/* ============================
   NAVBAR
============================= */
.reign-navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.reign-navbar.scrolled {
    background-color: rgba(8, 19, 43, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.reign-navbar .navbar-brand img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

/* Ensure logo stays visible */
.navbar-brand img,
.hero img.logo,
.hero img.mb-4 {
    position: relative;
    z-index: 1000;
}

/* ============================
   POLICY CARD
============================= */
.policy-card {
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    background: var(--white);
    padding: 20px;
}

.policy-card h2 {
    color: var(--navy-blue);
}

.policy-card li {
    margin-bottom: 8px;
}
.why-choose-us-text,
.why-choose-us-text h4,
.why-choose-us-text p {
    color: var(--gold) !important;
}
/* HERO Section Styling */
.hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Bring text above the overlay */
.hero-content {
    position: relative;
    z-index: 5;
}

.hero-logo {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero-subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Gold Button */
.btn-gold {
    background-color: var(--gold);
    color: var(--navy-blue);
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background-color: #b8942e;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
/* Gold Titles */
.section-title, 
h1.section-title, 
h2.section-title, 
h3.section-title,
.hero-title {
    color: var(--gold) !important;
}

/* White Body Text */
.section-text,
p,
.lead,
.card-text,
.why-choose-us-text p,
.testimonial-card p {
    color: var(--white) !important;
}

/* Ensure service titles stay gold */
.card-title {
    color: var(--gold) !important;
}
.card-body {
    color: #000; /* black text */
}
.bg-white .section-text li {
    color: #000;
}
