* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html, body {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, Helvetica, sans-serif !important;
  color: #0b2a2f;
}

h1, h2, h3, h4, h5, h6,
p, a, li, button, input, textarea, label, small {
  font-family: inherit !important;
}


body { font-family: inherit; color: inherit; }

/* body {
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
    color: #0b2a2f
} */


.nav-strip {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding-top: 14px;

    background: transparent;

}

.nav-wrap {
    width: calc(100% - 60px);
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 20px;
}


.nav-bar {
    position: relative;
    background: #0197B2;
    border-radius: 12px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 20px;
}


.brand-card {
    position: absolute;
    left: 0px;
    top: -27px;

    border-radius: 12px;
    padding: 10px 14px;
    display: block;
}

.brand-card img {
    height: 107.18px;
    width: 237.18px;
    display: block
}


.nav-bar {
    padding-left: 300px
}


.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1
}

.nav-menu>li>a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 300
}

.nav-menu>li>a:hover {
    opacity: .85
}

.dropdown {
    position: relative
}

.dropdown-toggle::after {
    content: " ▾";
    font-size: .85em
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    color: #0b2a2f;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    padding: 8px 0;
    margin-top: 10px;
    display: none;
}

.dropdown-menu li {
    list-style: none
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: #0b2a2f;
    text-decoration: none;
    font-weight: 300;
    font-size: 13px;
}

.dropdown-menu a:hover {
    background: rgba(1, 151, 178, .08)
}


@media (hover:hover) {
    .dropdown:hover>.dropdown-menu {
        display: block
    }
}


.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    color: #000;
    gap: 6px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 4px;
    padding: 4px 8px;
    font-weight: 300;
    font-size: 15px !important;
    width: 56px;
    height: 23px;
    text-decoration: none !important;

}

.btn-estimate {
    display: inline-block;
    text-decoration: none;
    color: #000;
    background: #FFC600;
    /* padding: .6rem 1.15rem; */
    padding: 10px;
    font-size: 15px;
    border-radius: 10px;
    font-weight: 500;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, .15) */
    width: 247px;
    height: 45px;
    text-align: center;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    font-size: 22px;
    line-height: 1;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer
}



.nav-drawer-head,
.nav-close {
    display: none;
}

/* ===== MOBILE LAYOUT (≤ 992px) ===== */
@media (max-width: 992px) {

    /* Bar becomes a 3-column row: [hamburger] [logo centered] [lang] */
    .nav-bar {
        padding: 10px 12px !important;
        display: grid;
        grid-template-columns: 44px 1fr 56px;
        /* left / center / right */
        align-items: center;
        gap: 0;
        padding-left: 12px !important;
        /* undo desktop left reserve */
    }

    /* Hamburger visible on the left */
    .nav-toggle {
        display: block;
        grid-column: 1;
        justify-self: start;
    }


    .nav-drawer-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 10px 6px 12px;
        margin: 4px 0 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .25);
    }

    .drawer-logo img {
        height: 60px;
        width: auto;
        border-radius: 10px;
        padding: 6px 10px;
        display: block;
    }

    .nav-close {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        line-height: 1;
        font-size: 22px;
        font-weight: 700;
        border: 0;
        color: #0197B2;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
        cursor: pointer;
    }

    .nav-close:active {
        transform: scale(.98);
    }

    /* Logo centered, not overlapping */
    .brand-card {
        /* position: static !important; */
        /* cancel absolute positioning */
        top: auto !important;
        left: auto !important;
        transform: none !important;
        justify-self: center;
        /* background: #fff; */
        border-radius: 10px;
        padding: 6px 10px;
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, .18); */
    }

    .brand-card img {
        height: 56px;
        /* readable on small screens */
        width: auto;
    }

    /* Right side only shows language chip on mobile */
    .nav-cta {
        grid-column: 3;
        justify-self: end;
    }

    .nav-cta .desktop-only {
        display: none;
    }

    /* hide desktop CTA on mobile */

    /* Drawer menu from LEFT */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 82%;
        max-width: 360px;
        background: #0197B2;
        padding: 16px 16px 24px;
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        transform: translateX(-100%);
        transition: transform .25s ease;
        z-index: 1000;
        align-items: flex-start;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease;
        z-index: 900;
    }

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu>li {
        text-align: left !important;
        width: 100%;
    }

    .nav-menu>li>a {
        display: block;
        width: 100%;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        text-align: left !important;
        padding: 12px 14px;

        border-radius: 8px;
    }

    .nav-menu>li>a:hover {
        background: rgba(255, 255, 255, .12);
    }

    /* Dropdowns inside drawer (toggle on click) */
    .dropdown-menu {
        position: static;
        width: 92%;
        margin: 8px auto 10px;
        /* centered panel width */
        background: rgba(255, 255, 255, .10);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: 10px;
        /* Smooth accordion: no display flip */
        overflow: hidden;
        max-height: 0;
        /* collapsed */
        padding: 0;
        /* animate padding too */
        box-shadow: none;
        backdrop-filter: blur(2px);
        transition: max-height .28s ease, padding .28s ease;
    }

    .nav-menu .dropdown-menu {
        /* It must be displayable so the JS can measure scrollHeight */
        display: block !important;

        /* collapsed state */
        max-height: 0;
        overflow: hidden;
        padding: 0;
        /* no padding when closed */
        margin: 8px auto 10px;
        /* keep your centered look */
        width: 92%;

        /* HIDE visuals while closed (this removes the white “pill”) */
        border: 0;
        background: transparent;

        box-shadow: none;
        backdrop-filter: blur(2px);
        transition: max-height .28s ease, padding .28s ease;
    }

    /* Open state visuals (only when parent .dropdown has .open) */
    .dropdown.open>.dropdown-menu {
        /* JS will animate max-height; we only restore padding + visuals */
        padding: 4px;
        border: 1px solid rgba(255, 255, 255, .25);
        background: #fff;
    }

    /* Disable hover behavior on mobile completely */
    .nav-menu .dropdown:hover>.dropdown-menu {
        display: block !important;
        /* keep display, but… */
        pointer-events: auto;
        /* …ignore hover */
    }

    .dropdown-menu a {
        display: block;
        color: #0197B2;
        padding: 10px 12px;
        border-radius: 8px;
        text-align: left;
        /* nicer for subitems */
    }

    .dropdown-menu a:hover {
        background: #0197B2;
        color: #fff;
    }

    /* Mobile CTA button inside drawer */
    .mobile-cta {
        margin-top: auto;
        padding-top: 12px;
    }

    .mobile-cta .btn-estimate {
        width: 100%;
        height: auto;
        display: block;
        text-align: center;
        background: #FFC600;
        color: #000;
        padding: 12px 14px;
        border-radius: 10px;
        font-weight: 700;
    }
}

/* Keep desktop spacing reserve */
@media (min-width: 993px) {
    .mobile-cta {
        display: none;
    }
}


@media (max-width:1100px) {
    .nav-wrap {
        width: calc(100% - 40px)
    }

    .brand-card {
        left: 16px;
        top: -20px
    }

    .nav-bar {
        padding-left: 250px
    }
}



@media (max-width:520px) {
    .brand-card img {
        height: 80px
    }

    .brand-card {
        top: -16px
    }

    .nav-bar {
        padding-left: 200px
    }
}

















/* ===== FOOTER (refined, responsive) ===== */

.foot-wrap {
    color: #fff;
    background:
        linear-gradient(rgba(1, 151, 178, .78), rgba(1, 151, 178, .78)),
        url('../img/footer-bg-image.jpg') center/cover no-repeat;
    padding: 64px 0 18px;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    overflow-x: hidden;
    /* never let mobile scroll sideways */
    
}

/* Grid: use areas so we can rearrange neatly at breakpoints */
.foot-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
    align-items: start;

    /* map current columns to areas */
    grid-template-areas:
        "brand best links areas contact";
}

.foot-brand {
    grid-area: brand;
    position: relative;
}

.foot-col:nth-of-type(1) {
    grid-area: best;
}

/* Best Services */
.foot-col:nth-of-type(2) {
    grid-area: links;
}

/* Useful Links  */
.foot-col:nth-of-type(3) {
    grid-area: areas;
}

/* Service Areas */
.foot-contact {
    grid-area: contact;
}

.foot-logo {
    display: block;
    margin: 0 auto clamp(-12px, -1.6vw, -6px);
    /* transform: translateY(clamp(-68px, -7vw, -54px)) */
}

.foot-logo img {
    width: 245px;
    height: auto;
    display: block;
    margin: 0 auto;
    /* background: #fff; */
    border-radius: 14px;
    padding: 18px 20px;
    /* box-shadow: 0 24px 48px rgba(0, 0, 0, .22); */
}

/* Copy */
.foot-about {
    max-width: 440px;
    font-size: 14px;
    font-weight: 300;
    text-align: justify;
    opacity: .98;
    margin-top: 2px;
    word-break: break-word;
}

/* Titles & lists — fluid sizing */
.foot-title {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 600;
    margin: 8px 0 16px;
}

.foot-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.foot-list li {
    margin: 10px 0;
}

.foot-list a {
    color: #fff;
    text-decoration: none;
    opacity: .96;
    display: inline-flex;
    gap: 8px;
    font-size: clamp(14px, 1.3vw, 15px);
}

.foot-list a:hover {
    opacity: 1;
    text-decoration: underline;
}

.arr {
    color: #fff;
}

/* Contact */
.foot-contact-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 10px 0 12px;
}

.foot-contact-row .ico {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
 
    font-size: 14px;
}

.footer-contact-items{
    font-size: 14px !important;
    text-decoration: none !important;

}
.footer-contact-items a{
    font-size: 14px !important;
    text-decoration: none !important;
    color: #fff !important;
}

.foot-contact a {
    color: #fff ;
    text-decoration: none;
}

.foot-contact a:hover {
    text-decoration: underline;
}

/* Social */
.foot-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.soc {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0197B2;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .20);
}

.soc:hover {
    transform: translateY(-1px);
}

/* Divider + copyright */
.foot-divider {
    height: 4px;
    margin: 18px 0 8px;
    opacity: .9;
    background: linear-gradient(90deg, transparent 0 3%, #FFC600 3% 97%, transparent 97% 100%);
}

.foot-copy {
    text-align: center;
    font-size: 14px;
    opacity: .96;
    padding: 6px 24px 8px;
}



.foot-social {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.foot-social .soc {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.12); */
}

.foot-social .soc:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.foot-contact a {
    color: #0197B2;
    text-decoration: none;
}


/* ---------- Large tablets (<= 1100px): 3 columns, brand full width ---------- */
@media (max-width:1100px) {
    .foot-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        grid-template-areas:
            "brand brand brand"
            "best  links  areas"
            "contact contact contact";
    }

    .foot-about {
        max-width: none;
    }

    .foot-logo {
        transform: translateY(-32px);
        margin-bottom: -6px;
    }
}

/* ---------- Tablets / phablets (<= 900px): 2 columns for links ---------- */
@media (max-width:900px) {
    .foot-wrap {
        padding: 56px 0 16px;
    }

    .foot-inner {
        padding: 0 18px;
        gap: 22px;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "brand   brand"
            "best    links"
            "areas   contact";
    }

    .foot-logo {
        transform: translateY(-28px);
        margin-bottom: -6px;
    }

    .foot-logo img {
        width: 205px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .foot-title {
        margin: 4px 0 12px;
    }

    .foot-list li {
        margin: 8px 0;
    }

    .foot-contact-row {
        margin: 8px 0 10px;
    }

    .foot-contact-row .ico {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .soc {
        width: 38px;
        height: 38px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    }

    .foot-divider {
        height: 3px;
        margin: 14px 0 8px;
    }

    .foot-copy {
        font-size: 13px;
        line-height: 1.5;
        padding: 6px 16px 8px;
    }
}

/* ---------- Mobile (<= 720px): single column + centered floating logo ---------- */
@media (max-width:720px) {
    .foot-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "best"
            "links"
            "areas"
            "contact";
    }

    .foot-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .foot-logo {
        position: relative;
        /* left: 50%; */
        transform: translate(-24px);
        /* center + lift */
        margin-bottom: -8px;
    }

    .foot-logo img {
        width: 200px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .foot-about {
        max-width: 560px;
        text-align: center;
        margin-top: 20px;
    }
}

/* ---------- Tiny phones (<= 480px): smaller lift & logo ---------- */
@media (max-width:480px) {
    /* .foot-logo {
        transform: translate(-50%, -20px);
    } */

        .foot-logo {
        position: relative;
        /* left: 50%; */
        transform: translate(-24px);
        /* center + lift */
        margin-bottom: -8px;
    }
 
    .foot-logo img {
        width: 180px;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .foot-title {
        font-size: clamp(17px, 4.8vw, 19px);
    }

    .foot-list a {
        font-size: clamp(14px, 4.2vw, 15px);
    }

    .foot-about {
        font-size: 13.5px;
        line-height: 1.7;
    }
}


@media (prefers-reduced-motion: reduce) {

    .soc:hover,
    .foot-logo {
        transform: none !important;
    }
}


@media (min-width: 1101px){
  .foot-inner{

    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    grid-template-areas: "brand best links contact";
    gap: 28px; 
  }

  .foot-col:nth-of-type(3){
    display: none;
  }
}


.map-frame-2{
  display:block;
  width:100%;
  height:200px !important;      
  border:0;
  border-radius:12px;
}

@media (min-width: 768px){
  .map-frame-2{ height:320px; }   
}

@media (min-width: 1200px){
  .map-frame-2{ height:360px; }  
}






  .floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: flex-end;
    gap: 10px;
    z-index: 9999;
  }
  
  .language-switcher,
  .whatsapp-button {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  
  .language-switcher {
    background: white;
    color:#000000;
  }
  
  .language-switcher .flag-icon {
    width: 20px;
    height: auto;
    margin-right: 6px;
  }
  
  .whatsapp-button {
    background-color: #25D366;
    color: white;
  }
  
  .whatsapp-button img {
    margin-right: 8px;
  }
  
  .whatsapp-label {
    font-size: 14px;
    transition: opacity 0.3s ease-in-out;
    color: #ffffff;
  }
  
  /* Responsive: adjust slightly if needed */
  @media (max-width: 576px) {
    .floating-buttons {
      bottom: 15px;
      right: 15px;
    }
  
    .whatsapp-button,
    .language-switcher {
      padding: 5px 8px;
      font-size: 13px;
    }
  
    .whatsapp-label {
      display: none; 
    }
  }
  