/* ============================================================
   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;
}

/* ─────────────────────────────────────────────
   Reset & base
   ───────────────────────────────────────────── */
*,
*::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: "Trebuchet MS", "Lucida Sans Unicode", "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;
}


/* ============================================================
   HEADER
   ============================================================ */

/* ─────────────────────────────────────────────
   1. Top bar
   ───────────────────────────────────────────── */
.hdr-topbar {
    background-color: var(--hdr-topbar-bg);
    padding: 8px 0;
}

.hdr-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.hdr-topbar__welcome {
    color: var(--bg);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.hdr-topbar__socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hdr-topbar__socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    width: 38px;
    height: 38px;
    border-radius: 3px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hdr-topbar__socials li a svg {
    width: 18px;
    height: 18px;
    fill: var(--bg);
    display: block;
    flex-shrink: 0;
}

.hdr-topbar__socials li a:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}


/* ─────────────────────────────────────────────
   2. Info bar
   ───────────────────────────────────────────── */
.hdr-infobar {
    background: linear-gradient(to bottom, #ffffff 60%, #ebebeb 100%);
    border-bottom: 1px solid var(--gray-border);
}

.hdr-infobar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
}

.hdr-infobar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hdr-infobar__logo img {
    display: block;
    height: 72px;
    width: auto;
}

/* Contact items */
.hdr-infobar__contacts {
    display: flex;
    align-items: center;
}

.hdr-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    font-size: 20px;
    color: var(--text-secondary);
    border-right: 1px solid var(--gray-border);
}

.hdr-contact-item:last-child {
    border-right: none;
    padding-right: 0;
}

.hdr-contact-icon {
    width: 22px;
    height: 22px;
    color: var(--hdr-nav-bg);
    flex-shrink: 0;
}

.hdr-contact-item a {
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.2s ease;
}

.hdr-contact-item a:hover {
    color: var(--hdr-nav-bg);
}


/* ─────────────────────────────────────────────
   3. Nav bar
   ───────────────────────────────────────────── */
.hdr-nav {
    background-color: var(--hdr-nav-bg);
    position: relative;
    z-index: 1000;
    width: 100%;
}

.hdr-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    animation: hdrSlideDown 0.25s ease;
}

@keyframes hdrSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.hdr-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    overflow: visible;
}

/* ── Hamburger — hidden on desktop ── */
.hdr-nav__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    min-height: 52px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    color: var(--bg);
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.hdr-nav__hamburger:hover {
    background: rgba(0, 0, 0, 0.1);
}

.hdr-nav__hamburger svg {
    fill: var(--bg);
}

/* ── Sub-menu toggle icon (≡) — shown only on mobile via .has-sub > a ── */
.hdr-sub-toggle {
    display: none;
    /* shown in mobile breakpoint */
    margin-left: auto;
    flex-shrink: 0;
    line-height: 0;
}

.hdr-sub-toggle svg {
    fill: var(--bg);
    display: block;
}

/* ── Nav list ── */
.hdr-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    flex: 1;
    overflow: visible;
}

.hdr-nav__menu>li {
    position: relative;
    display: flex;
    align-items: stretch;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 2;
}

.hdr-nav__menu>li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hdr-nav__menu>li>a {
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: var(--bg);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-height: 52px;
    width: 100%;
    transition: background 0.2s ease;
}

.hdr-nav__menu>li>a:hover,
.hdr-nav__menu>li.active>a {
    background-color: rgba(0, 0, 0, 0.15);
}

.hdr-nav__menu>li:hover,
.hdr-nav__menu>li:focus-within,
.hdr-nav__menu>li.sub-open {
    z-index: 9999;
}

/* ── Sub-menus ── */
.hdr-sub {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--hdr-nav-bg);
    display: none;
    z-index: 10000;
}

/* Desktop: hover reveals sub */
@media (min-width: 992px) {
    .hdr-nav__menu>li.has-sub:hover>.hdr-sub {
        display: block;
    }
}

.hdr-sub li a {
    display: block;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--gray-border);
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.hdr-sub li:last-child a {
    border-bottom: none;
}

.hdr-sub li a:hover {
    background: var(--secondary);
    color: var(--hdr-nav-bg);
    padding-left: 26px;
}

/* ── CTA button ── */
.hdr-nav__cta {
    display: flex;
    align-items: center;
    padding: 0 36px;
    background-color: var(--hdr-cta-bg);
    color: var(--hdr-cta-color);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    clip-path: polygon(14px 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: filter 0.2s ease;
}

.hdr-nav__cta:hover {
    filter: brightness(1.08);
    color: var(--hdr-cta-color);
}

/* Show correct label per breakpoint */
.hdr-cta-mobile {
    display: none;
}

.hdr-cta-desktop {
    display: inline;
}


/* ─────────────────────────────────────────────
   4. Misc utilities
   ───────────────────────────────────────────── */
.service-area-location {
    color: var(--text-main);
    font-weight: 600;
    display: inline;
    margin-left: 4px;
    font-size: 0.95em;
    word-break: break-word;
}

.tags ul li {
    background-color: var(--secondary);
}

.my-carousel {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.my-carousel-item img {
    width: 100%;
}

.my-carousel .owl-nav {
    position: absolute;
    top: 45%;
    width: 95%;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

.my-carousel .nav-main-slider-btn {
    color: var(--bg);
    display: block;
    width: 20px;
    height: 20px;
    font-size: 30px;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

.my-carousel .owl-dots {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.my-carousel .owl-dot {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bg);
    margin: 10px;
    outline: none;
    cursor: pointer;
    border: none;
}

.my-carousel .owl-dot.active {
    background-color: var(--hdr-nav-bg);
}


/* ─────────────────────────────────────────────
   5. Header responsive
   ───────────────────────────────────────────── */

/* ── Tablet & below (≤ 991px) ── */
@media (max-width: 991px) {

    /* Top bar: stack welcome text above socials, all centred */
    .hdr-topbar__inner {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
    }

    .hdr-topbar__welcome {
        font-size: 13px;
        text-align: center;
    }

    .hdr-topbar__socials {
        justify-content: center;
        gap: 8px;
    }

    /* Info bar: centre logo, hide contact strip */
    .hdr-infobar__inner {
        justify-content: center;
        min-height: 80px;
        padding: 12px 16px;
    }

    .hdr-infobar__contacts {
        display: none;
    }

    /* Nav inner: hamburger left, CTA right, menu below full-width */
    .hdr-nav__inner {
        flex-wrap: wrap;
        max-width: 100%;
    }

    /* Show hamburger */
    .hdr-nav__hamburger {
        display: flex;
    }

    /* CTA hidden on mobile */
    .hdr-nav__cta {
        display: none;
    }

    .hdr-cta-desktop {
        display: none;
    }

    .hdr-cta-mobile {
        display: inline;
    }

    /* Menu hidden until toggled */
    .hdr-nav__menu {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 10;
        /* pushes below hamburger + CTA row */
    }

    .hdr-nav__menu.menu-open {
        display: flex;
    }

    /* Each item: full-width teal block */
    .hdr-nav__menu>li {
        border-right: none;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
    }

    .hdr-nav__menu>li:first-child {
        border-left: none;
    }

    .hdr-nav__menu>li>a {
        padding: 14px 16px;
        min-height: 50px;
        font-size: 13px;
        justify-content: space-between;
        /* text left, ≡ right */
    }

    /* Show the ≡ toggle icon on dropdown items */
    .has-sub>a .hdr-sub-toggle {
        display: flex;
        align-items: center;
    }

    /* Sub-menu open by JS .sub-open */
    .hdr-nav__menu>li.has-sub.sub-open>.hdr-sub {
        display: block;
    }

    /* Mobile sub-menu: static white block, indented */
    .hdr-sub {
        position: static;
        border-top: none;
        border-left: none;
        box-shadow: none;
        background: #f0fafe;
        width: 100%;
        min-width: 100%;
    }

    .hdr-sub li a {
        padding: 12px 16px 12px 28px;
        font-size: 13px;
        color: var(--text-secondary);
        background: transparent;
        border-bottom-color: var(--gray-border);
        white-space: normal;
    }

    /* ›  chevron prefix via CSS */
    .hdr-sub li a::before {
        content: "›";
        margin-right: 8px;
        font-size: 16px;
        color: var(--hdr-nav-bg);
        font-weight: 700;
    }

    .hdr-sub li a:hover {
        background: var(--secondary);
        color: var(--hdr-nav-bg);
        padding-left: 34px;
    }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
    .hdr-infobar__logo img {
        height: 60px;
    }
}


/* ============================================================
   FOOTER STYLES
   ============================================================ */

.footer-cta {
    background-color: #0c0c0c;
    color: #ffffff;
    font-size: 20px;
}

.footer-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 32px;
    padding-right: 0;
}

.footer-cta__text .text-primary {
    color: var(--primary);
    font-weight: 700;
}

.footer-cta__button-wrapper {
    background-color: #078ad6;
    padding: 20px 40px 20px 60px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.footer-cta__button {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    display: block;
}

.site-footer {
    background-color: #191919;
    color: #ffffff;
    padding-top: 60px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ffffff;
    padding-right: 20px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact-list svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.footer-social-boxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-box {
    display: inline-flex;
    width: max-content;
    min-width: 150px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.social-box:hover {
    transform: translateX(5px);
}

.social-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.social-box .icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.social-box .text {
    background-color: #111111;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-grow: 1;
}

.fb-box .icon {
    background-color: #3b5998;
}

.ig-box .icon {
    background-color: #e4405f;
}

.yt-box .icon {
    background-color: #cd201f;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.fb-widget-container {
    background: #ffffff;
    padding: 5px;
    border-radius: 3px;
    min-height: 150px;
}

.footer-skyline {
    width: 100%;
    height: 80px;
    background-position: bottom center;
    background-repeat: repeat-x;
    background-size: contain;
}

.footer-bottom {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    font-size: 15px;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-primary {
    color: var(--primary);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--hdr-nav-bg);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.scroll-to-top:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
}

/* Footer responsive */
@media (max-width: 991px) {
    .footer-cta__inner {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
    }

    .footer-cta__text {
        padding: 20px 15px;
    }

    .footer-cta__button-wrapper {
        width: 100%;
        clip-path: none;
        padding: 20px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-social-boxes {
        align-items: center;
    }

    .footer-bottom__inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose-section {
    background-color: #E4F6FF;
    padding: 60px 0;
    font-family: 'Inter', Arial, sans-serif;
}

.why-title {
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.why-card {
    background-color: #ffffff;
    padding: 20px;
    text-align: left;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-card-header {
    border-top: 2px solid var(--text-main);
    border-bottom: 2px solid var(--text-main);
    padding: 12px 0;
    margin-bottom: 20px;
}

.why-card-title {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
    text-align: center;
}

.why-card-body p {
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 25px 20px;
    }
}


/* ============================================================
   SERVICES HEADER SECTION
   ============================================================ */
.services-header-wrapper {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Inter', Arial, sans-serif;
    width: 100%;
}

.services-main-title {
    color: #000000;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.services-subtitle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 15px;
}

.header-line {
    flex-grow: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.header-star {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.services-subtitle-text {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .services-main-title {
        font-size: 30px;
    }

    .services-subtitle-row {
        max-width: 100%;
        padding: 0 20px;
        gap: 10px;
    }

    .services-subtitle-text {
        font-size: 14px;
        white-space: normal;
    }

    .header-star {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .services-main-title {
        font-size: 26px;
    }

    .header-line {
        flex-grow: 0.5;
    }
}