/* ============================================================ SITE CSS  —  Header + Footer ============================================================ */
/* ───────────────────────────────────────────── Design tokens ───────────────────────────────────────────── */
:root {
    --primary: #206c86;
    --secondary: #dbf6ff;
    --text-main: #2ab0dd;
    --text-secondary: #000000;
    --gray-bg: #f5f5f5;
    --gray-border: #dcdcdc;
    --bg: #ffffff;
    /* Header-specific */
    --hdr-topbar-bg: #333333;
    --hdr-nav-bg: #13a0b2;
    --hdr-cta-bg: #f5a623;
    --hdr-cta-color: #1a1a1a;
    --cyan: #009ab5;
    --yellow: #f8cc00;
    --text: #111111;
    --gray: #555555;
    --white: #ffffff;
    --light: #f8f9fa;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

::placeholder {
    color: #000 !important;
    opacity: 1 !important;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body {
    margin: 0;
    font-family: "Lucida Grande", sans-serif;
    color: var(--text-secondary);
    background: var(--bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

p {
    font-size: 15px;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px !important;
}

/* ══════════════════════════════════════════════════════ BASE ══════════════════════════════════════════════════════ */
:root {
    --hdr-navy: #1b1b3a;
    --hdr-orange: #f25b2a;
}

.site-header a {
    text-decoration: none;
}

/* ══════════════════════════════════════════════════════ 1. TOP PROMO BAR ══════════════════════════════════════════════════════ */
.hdr-topbar {
    background: var(--hdr-navy);
    color: #fff;
    padding: 10px 0;
}

.hdr-topbar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
}

.hdr-topbar__left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.hdr-topbar__welcome {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.hdr-topbar__divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
}

/* Socials */
.hdr-topbar__socials {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.hdr-topbar__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
}

.hdr-topbar__socials svg {
    width: 13px;
    height: 13px;
}

.hdr-topbar__socials a:hover {
    background: var(--hdr-orange);
    color: #fff;
}

/* Right info group: Address / Call Us / Timing */
.hdr-topbar__info {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.hdr-info-item {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    padding: 0 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.hdr-info-item:first-child {
    border-left: none;
}

.hdr-info-item strong {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.hdr-info-item span,
.hdr-info-item a {
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
}

.hdr-info-item.hdr-info-call a:hover {
    color: var(--hdr-orange);
}

/* ══════════════════════════════════════════════════════ 2. NAV BAR (logo + menu + CTA) ══════════════════════════════════════════════════════ */
.hdr-nav {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.hdr-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    animation: hdrSlideDown 0.35s ease;
}

@keyframes hdrSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.hdr-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hdr-nav__logo img {
    height: 70px;
    width: auto;
    display: block;
}

.hdr-nav__hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--hdr-navy);
    cursor: pointer;
    padding: 6px;
}

.hdr-nav__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.hdr-nav__menu>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.hdr-nav__menu>li>a:hover,
.hdr-nav__menu>li.active>a {
    color: var(--hdr-orange);
}

.hdr-sub-toggle svg {
    width: 9px;
    height: 9px;
}

.hdr-nav__menu li.has-sub {
    position: relative;
}

.hdr-sub {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 50;
}

.hdr-nav__menu li.has-sub:hover .hdr-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hdr-sub li a {
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.hdr-sub li a:hover {
    background: #fff5f2;
    color: var(--hdr-orange);
}

/* CTA button */
.hdr-nav__cta {
    background: var(--hdr-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 30px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hdr-nav__cta:hover {
    background-color: #262262;
    color: #fff;
    transform: translateY(-1px);
}

.hdr-cta-mobile {
    display: none;
}

/* ══════════════════════════════════════════════════════ MID-SIZE (tighten before anything wraps) ══════════════════════════════════════════════════════ */
@media (max-width: 1300px) and (min-width: 992px) {
    .hdr-topbar__welcome {
        font-size: 12px;
    }

    .hdr-info-item {
        padding: 0 8px;
    }

    .hdr-info-item strong,
    .hdr-info-item span,
    .hdr-info-item a {
        font-size: 11px;
    }

    .hdr-nav__menu {
        gap: 16px;
    }

    .hdr-nav__menu>li>a {
        font-size: 14px;
    }
}

/* ══════════════════════════════════════════════════════ MOBILE ══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .hdr-nav__cta {
        display: none !important;
    }

    .hdr-topbar__info {
        display: none;
    }

    .hdr-topbar__inner {
        justify-content: center;
    }

    .hdr-nav__hamburger {
        display: block;
    }

    .hdr-nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .hdr-nav__menu.menu-open {
        display: flex;
        z-index: 1001;
    }

    .hdr-nav__menu>li {
        width: 100%;
    }

    .hdr-nav__menu>li>a {
        width: 100%;
        padding: 12px 24px;
        justify-content: space-between;
    }

    .hdr-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding-left: 12px;
    }

    li.has-sub.sub-open .hdr-sub {
        display: block;
    }

    .hdr-nav__inner {
        position: relative;
        flex-wrap: wrap;
    }

    .hdr-cta-desktop {
        display: none;
    }

    .hdr-cta-mobile {
        display: inline;
    }
}

@media (max-width: 550px) {
    .hdr-topbar {
        display: none;
    }
}

/* ============================================================ FOOTER STYLES (updated) ============================================================ */
.site-footer-wrapper {
    background-color: #f8ddd0;
    /* peach background from reference */
}

.site-footer {
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.about-col .footer-heading img {
    max-width: 220px;
}

.footer-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Phone / Headquarters block in About column */
.footer-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 16px;
    color: #000;
}

.footer-contact-label {
    font-weight: 700;
    color: #000;
}

.footer-contact-item a {

    font-weight: 600;
}

.footer-contact-item a:hover {
    text-decoration: underline;
    color: var(--hdr-orange, #f25b2a);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 17px;
}

.footer-links a:hover {
    text-decoration: underline;
    color: var(--hdr-orange, #f25b2a);
}

/* Highlight active/current service link if needed */
.footer-links a.active {
    color: var(--hdr-orange, #f25b2a);
}

.fb-widget-container {
    background: transparent;
}

/* ===== Bottom bar ===== */
.footer-bottom {
    background-color: #f8ddd0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px 0;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
    color: #000000;
}

.footer-bottom__copy a {
    text-decoration: underline;
}

.footer-bottom__legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom__legal a {
    color: var(--hdr-orange, #f25b2a);
    text-decoration: underline;
}

.footer-bottom__divider {
    color: #000;
    opacity: 0.4;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }
}