/* =========================
   GLOBAL RESET & BASE
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

/* =========================
   HEADER (COMMON)
========================= */
header {
    background: #0b3c5d;
    color: #ffffff;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 0;
}

.logo a {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.call-btn {
    background: #ffb703;
    color: #000000;
    padding: 10px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: #f1f5f9;
    padding: 50px 15px;
    text-align: center;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0b3c5d;
}

.hero p {
    font-size: 17px;
    margin-bottom: 25px;
}

.hero a {
    display: inline-block;
    background: #0b3c5d;
    color: #ffffff;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
}

/* =========================
   SECTIONS & SERVICES
========================= */
section {
    padding: 40px 15px;
}

h2 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

.service-box {
    background: #fafafa;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #0b3c5d;
}

/* =========================
   CTA SECTION
========================= */
.cta {
    background: #0b3c5d;
    color: #ffffff;
    text-align: center;
    padding: 40px 15px;
}

.cta h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 20px;
}

.cta a {
    display: inline-block;
    background: #ffb703;
    color: #000000;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 6px;
    font-weight: bold;
}

/* =========================
   DISCLOSURE (ABOVE FOOTER)
========================= */
.disclosure {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 25px 15px;
    font-size: 14px;
}

.disclosure p {
    margin-bottom: 8px;
}

/* =========================
   FOOTER (COMMON)
========================= */
footer {
    background: #f1f1f1;
    padding: 25px 15px 80px; /* space for sticky bar */
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.footer-links a {
    color: #0b3c5d;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    margin-top: 15px;
    text-align: center;
}

/* =========================
   STICKY CALL BAR
========================= */
.sticky-call {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ffb703;
    text-align: center;
    padding: 12px 10px;
    font-weight: bold;
    z-index: 999;
}

.sticky-call a {
    color: #000000;
    text-decoration: none;
}

/* =========================
   RESPONSIVE (MOBILE SAFE)
========================= */
@media (max-width: 768px) {

    .header-flex {
        flex-direction: column;
        text-align: center;
    }

    .call-btn {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta a {
        font-size: 18px;
        padding: 14px 22px;
    }

}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

/* Call button */
.header-phone a {
    background: #0057b8;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .logo img {
        height: 36px;
    }

    .header-phone a {
        padding: 8px 12px;
        font-size: 14px;
    }
}
/* HEADER BASE */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
}

/* FORCE EDGE ALIGNMENT */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    width: 100%;
}

/* LOGO LEFT */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
    max-width: 160px;
}

/* CALL NOW RIGHT */
.call-now {
    background: #0057b8;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* MOBILE — STILL LEFT / RIGHT */
@media (max-width: 768px) {
    .logo img {
        height: 36px;
    }

    .call-now {
        padding: 8px 14px;
        font-size: 14px;
    }
}
