/* ============================================================ 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;
    /* Footer-specific (orange / navy design) */
    --ftr-orange: #F26522;
    --ftr-navy: #182873;
    --ftr-navy-deep: #10195C;
    --ftr-border: rgba(255, 255, 255, 0.15);
    --ftr-text: rgba(255, 255, 255, 0.85);
    --ftr-heading: #ffffff;
}

*,
*::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 32px;
}

/* ══════════════════════════════════════════════════════ BASE ══════════════════════════════════════════════════════ */
:root {
    --hdr-navy: #1b1b3a;
    --hdr-orange: #f25b2a;
}

.site-header a {
    text-decoration: none;
}

/* ══════════════════════════════════════════════════════ 1. TOP PROMO BAR ══════════════════════════════════════════════════════ */
.hdr-topbar {
    background: #00196E;
    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: #FF9802;
    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: 16px;
    font-weight: 600;
    color: #fff;
}

.hdr-info-item span,
.hdr-info-item a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.hdr-info-item.hdr-info-call a:hover {
    color: #FF9802;
}

/* ══════════════════════════════════════════════════════ 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: 10px;
}

.hdr-nav__logo img {
    height: 60px;
    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: #FD5003;
}

.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: 16px;
    font-weight: 600;
    color: #000000;
}

.hdr-sub li a:hover {
    background-color: #FF9802;
    color: #fff;
}

/* CTA button */
.hdr-nav__cta {
    background: #FF9802;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 26px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 2px solid #FF9802;
}

.hdr-nav__cta:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-1px);
    border: 2px solid #FF9802;
}

.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 (orange "Follow Us" bar + navy 4-column footer + legal bottom bar) ============================================================ */

.ftr-topbar {
    position: relative;
    top: -18px;
    margin-bottom: -38px;
    z-index: 2;
}

.ftr-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.ftr-topbar__follow {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fc5003;
    padding: 20px 25px;
    border-radius: 0px;
    flex: 1;
    justify-content: space-between;
}

.ftr-topbar__label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
}

.ftr-topbar__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ftr-topbar__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transition: background 0.2s ease;
}

.ftr-topbar__socials a:hover {
    background: rgba(255, 255, 255, 0.35);
}

.ftr-topbar__phone {
    background: var(--ftr-navy);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 30px;
    white-space: nowrap;
    transition: background 0.2s ease;
    text-decoration: none;
    border: 2px solid var(--ftr-navy);
}

.ftr-topbar__phone:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid var(--ftr-navy);
}

/* ===== Main footer body ===== */
.site-footer-wrapper {
    background: var(--ftr-navy);
    position: relative;
    z-index: 1;
}

.site-footer {
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

/* subtle decorative glow, since no background photo asset is available */
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.06), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.05), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.site-footer>.container-1200 {
    position: relative;
    z-index: 1;
}

/* 4-column grid: About wider, other three equal */
.footer-grid,
.footer-grid--4col {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 36px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0 0 18px;
    color: var(--ftr-heading);
}

/* Logo */
.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    max-width: 210px;
}

/* Short description under logo */
.footer-about-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ftr-text);
    margin: 0 0 20px;
    max-width: 300px;
}

/* Phone / Headquarters block */
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
}

.footer-contact-label {
    font-weight: 700;
    color: #ffffff;
}

.footer-contact-value {
    color: #ffffff;
    font-weight: 500;
}

.footer-contact-value:hover {
    color: var(--ftr-orange);
    font-weight: 700;
}

.footer-contact-item a.footer-contact-value:hover {
    color: var(--ftr-orange);
    text-decoration: underline;
}

/* Services / Quick Links lists */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: var(--ftr-text);
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover,
.footer-links a.is-active {
    color: var(--ftr-orange);
    text-decoration: underline;
    font-weight: 600;
}

/* Facebook widget */
.fb-widget-container {
    background: transparent;
    width: 100%;
    max-width: 280px;
    overflow: hidden;
    border-radius: 4px;
}

.fb-widget-container .fb-page,
.fb-widget-container iframe {
    width: 100% !important;
    max-width: 280px;
}

.fb-page blockquote.fb-xfbml-parse-ignore {
    display: none;
}

/* Social icons under the Facebook widget */
.footer-socials--fb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ftr-orange);
    color: #ffffff;
    border: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social-icon:hover {
    background: #ffffff;
    color: var(--ftr-orange);
    transform: translateY(-2px);
}

/* ===== Bottom bar ===== */
.footer-bottom {
    background: var(--ftr-navy);
    padding: 18px 0;
    border-top: 1px solid var(--ftr-orange);
    position: relative;
    z-index: 1;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--ftr-text);
}

.footer-bottom__link-accent:hover {
    text-decoration: underline;
    color: var(--ftr-orange);
    font-weight: 600;
}

/* Terms & Conditions / Privacy Policy */
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.footer-legal-links a {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.footer-legal-links a:hover {
    text-decoration: underline;
    color: var(--ftr-orange) !important;
}

@media (max-width: 1200px) {

    .footer-grid,
    .footer-grid--4col {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .fb-widget-col {
        grid-column: 1 / -1;
    }

    .fb-widget-container {
        max-width: 340px;
    }
}

@media (max-width: 900px) {

    .footer-grid,
    .footer-grid--4col {
        grid-template-columns: 1fr 1fr;
    }

    .fb-widget-col {
        grid-column: auto;
    }
}

@media (max-width: 640px) {

    .ftr-topbar__follow {
        width: 100%;
        flex: 1 1 100%;
        flex-wrap: wrap;
        row-gap: 12px;
        padding: 14px 16px;
        gap: 10px;
        justify-content: center;
    }

    .ftr-topbar__follow>div {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .ftr-topbar__socials {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ftr-topbar__phone {
        flex: 1 1 100%;
        width: 100%;
        text-align: center;
    }

    .footer-contact {
        gap: 24px;
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-grid,
    .footer-grid--4col {
        grid-template-columns: 1fr;
        gap: 26px;
    }

}

.scrollToTop {
    background: #6430AE none repeat scroll 0 0;
    bottom: 30px;
    color: #fff;
    font-size: 30px;
    height: 40px;
    line-height: 40px;
    right: 100px;
    text-align: center;
    border-radius: 5px;
    width: 40px;
}

.lfloat {
    display: none !important;
}