/* ── HEADER ── */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 3px solid var(--orange-bright);
    box-shadow: var(--shadow-sm);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    gap: 20px;
}

.header .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header .logo-wrap img {
    width: 81px;
}

.header .logo-text h2 {
    font-size: 19px;
    font-weight: 600;
    color: var(--navy);
    line-height: 29px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin: 0;
}

.header .logo-text span {
    font-size: 10.5px;
    color: var(--orange);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 1px;
    display: block;
}

/* Desktop nav */
.header .nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.header .nav a {
    padding: 8px 13px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
}

.header .nav a:hover ,.header .nav a.active {
    background: var(--off-white);
    color: var(--navy);
}


.header .has-dd {
    position: relative;
}

/* Desktop dropdown — smooth downward reveal */
.header .dropdown {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    min-width: 262px;
    padding: 8px;
    z-index: 100;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.header .has-dd:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

.header .dropdown a {
    padding: 7px 12px;
    font-size: 13px;
    border-radius: 6px;
    color: var(--text-mid);
    display: grid;
    grid-template-columns: 33px auto;
    gap: 10px;
    align-items: center;
    transition:0.5s;
        margin: 5px 0;
}

.header .dropdown a svg{
    padding: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    color: #0a2a6e;
    transition:0.5s;
}

.header .dropdown a:hover, .header .dropdown a.active  {
    background: var(--off-white);
    color:#fb7400;
}

.header .dropdown a:hover svg, .header .dropdown a.active svg{
    background:var(--navy);
    color:white;
}

/* CTA button */
.header .btn-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-bright)) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
    margin-left: 40px;
}

.header .btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 124, 0, 0.45) !important;
}

/* Hamburger toggle */
.header .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.header .nav-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header .nav-toggle .bar:nth-child(2) {
    margin: 6px 0;
}

.header .nav-toggle .bar:nth-child(1) {
    transform-origin: top left;
}

.header .nav-toggle .bar:nth-child(3) {
    transform-origin: bottom left;
}

.header .nav-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(1px, -1px);
}

.header .nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header .nav-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 1px);
}

/* Close button inside offcanvas */
.header .close-btn {
    display: none;
}

/* Dropdown arrow */
.header .dd-arrow {
    font-size: 13px;
    transition: transform 0.25s;
    margin-left: 6px;
    color: #0d1b3e;
    display: flex;
    justify-content: center;
    align-items: center;

}

.header .dd-arrow i:before {
    font-weight: 600 !important;
}

.header .dd-arrow.open {
    transform: rotate(180deg);
}

/* ── OVERLAY (outside header, scoped separately) ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

.footer .nn-image{
    width: 22px;
    height: 22px;
    background:#ffffff;
    padding:2px;
    border-radius: 4px;
}

.footer .nn-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    border-radius: 4px;
}

.pb-powered a{
    display: flex;
    align-items: center;
    gap: 7px;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    background: #fff;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgb(253 112 0 / 52%);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: "bootstrap-icons";
    content: "\f145"; /* arrow-up icon */
    text-align: center;
    line-height: 46px;
    font-size: 26px;
    color: #061a4a; /* --- Pijl kleur --- */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
    opacity: 0;
}
.progress-wrap::before {
  position: absolute;
  font-family: "bootstrap-icons";
  content: "\f145"; /* arrow-up icon */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #061a4a; /* icon visible */
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  z-index: 2;
  opacity: 1; /* make visible */
  transition: all 200ms linear;
}
.progress-wrap:hover::before {
    opacity: 1;
}
.progress-wrap svg path { 
    fill: none; 
}
.progress-wrap svg.progress-circle path {
    stroke: rgb(253 113 0); /* --- Lijn progres kleur --- */
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


.g-recaptcha{
    display:none;
}

.header .nav a{
    transition:0.5s;
}

.header .nav a.active ,.header .nav a.active i{
    color:#fc7200;
}

.footer .our-serv-foot{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* ══════════════════════════
   TABLET & MOBILE (≤991px)
   ══════════════════════════ */
@media (max-width: 991px) {

    .header .container {
        padding: 0 20px;
    }

    /* Offcanvas panel — slides in from RIGHT */
    .header .nav {
        position: fixed;
        top: 0;
        right: -320px;
        left: auto;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        background: var(--white, #fff);
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        padding: 64px 0 40px;
        gap: 0;
        overflow-y: auto;
        transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -6px 0 28px rgba(0, 0, 0, 0.14);
    }

    .header .nav.open {
        right: 0;
    }

    /* Close (✕) button inside offcanvas top-right */
    .header .close-btn {
        display: flex;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        background: #f7f8fa;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 20px;
        align-items: center;
        justify-content: center;
        color: var(--navy, #162045);
        line-height: 1;
    }

    .header .close-btn i:before {
        font-weight: 600 !important;
    }

    /* Nav links */
    .header .nav>a,
    .header .has-dd>a {
        padding: 14px 22px;
        border-radius: 0;
        font-size: 15px;
        border-bottom: 1px solid #e8eaf0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Dropdown arrow visible on mobile */
    .header .dd-arrow {
        display: inline-block;
    }

    /* Mobile dropdown — toggle on click */
    .header .has-dd {
        position: static;
    }

    .header .dropdown {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 4px 0;
        display: none;
        transition: none;
        background: #f7f8fa;
    }

    .header .dropdown.open {
        display: block;
        padding-top:0;
    }

    .header .dropdown a {
        padding: 11px 22px 11px 28px;
        font-size: 13.5px;
        border-radius: 0;
        border-bottom: 1px solid #e8eaf0;
        color: var(--text-mid, #4a5060);
        margin:0;
    }

    .header .dropdown a:last-child {
        border-bottom: none;
    }

    /* CTA button inside offcanvas */
    .header .nav .btn-cta {
        margin: 16px 18px 0 !important;
        border-radius: 8px !important;
        text-align: center !important;
        display: block !important;
        padding: 13px 22px !important;
    }

    /* Show hamburger */
    .header .nav-toggle {
        display: flex;
    }

    .header .logo-text h2 {
        font-size: 18px;
    }

    .header .logo-text span {
        font-size: 8.5px;
    }

    .header .header-inner {
        gap: 15px;
    }
    

}

/* FOOTER */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
    border-top: 3px solid #ff6d00;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}


.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.75;
    margin: 16px 0 20px;
    max-width: 90%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 25px;
    text-transform: uppercase;
    letter-spacing: 1.9px;
}

.footer-logo-text span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.social-btn {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.social-btn:hover {
    background: var(--orange);
    color: #fff;
}

.footer-col h4 {
font-size: 12px;
    font-weight: 500;
    color: #f57c00;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(250, 163, 31, .65);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .1em;
    width: 80%;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-col ul li a::before {
    content: '\F280';
    font-size: 11px;
    color: var(--orange);
    font-family: 'bootstrap-icons';
    transition:0.2s;
}

.footer-col ul li a:hover::before{
    margin-left:4px;
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.88);
}

.fc-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    color: #ffffff;
}

.fc-item p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.55;
}

.fc-item a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition:0.2s;
}

.fc-item a:hover {
    color: var(--orange-bright);
}

.hours-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    padding: 10px 12px;
    margin-top: 4px;
}

.hours-box p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.48);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.32);
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--orange);
    text-decoration: none;
}

.pb-powered {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.32);
}

.pb-powered strong {
    color: rgba(255, 255, 255, 0.62);
}

.pb-powered a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.pb-powered a:hover {
    color: var(--orange);
}

.nn-tag {
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 100px;
    right: 29px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.42);
    text-decoration: none;
    animation: wa-bob 3s ease-in-out infinite;
    display:none;
}

.wa-float:hover {
    transform: scale(1.1);
}

 #successOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0);
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
  }
  #successOverlay.active {
    display: flex;
    background: rgba(0, 0, 0, 0.55);
  }
 
  /* ----- Popup Box ----- */
  #successPopupBox {
    background: #ffffff;
    border-radius: 18px;
    padding: 44px 36px 36px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.82) translateY(28px);
    opacity: 0;
    transition:
      transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity   0.28s ease;
  }
  #successOverlay.active #successPopupBox {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
 
  /* ----- Close X Button ----- */
  #successPopupClose {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 47px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    transition: color 0.15s;
    padding: 0;
  }
  #successPopupClose:hover { color: #333; }
 
  /* ----- Icon Circle ----- */
  #successPopupBox .sp-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #e8f5e9;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  /* ----- Typography ----- */
  #successPopupBox h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
  }
  #successPopupBox p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 24px;
  }
  #successPopupBox p a {
    color: #fb7400;
    font-weight: 500;
    text-decoration: none;
  }
  #successPopupBox p a:hover { text-decoration: underline; }
 
  /* ----- WhatsApp Button ----- */
  #successPopupBox .sp-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background:  #1ebe5d;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  #successPopupBox .sp-wa-btn i{
      font-weight:600 !important;
  }
  
  #successPopupBox .sp-wa-btn:hover { background: #fe7000; }
 
  /* ----- Close Text Link ----- */
  #successPopupBox .sp-close-link {
    display: block;
    margin-top: 14px;
    background: none;
    border: none;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
    margin: 16px auto 0;
  }
  #successPopupBox .sp-close-link:hover { color: #555; }
  
  #fservice {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Remove default arrow */
#fservice {
  width: 100%;
  padding-right: 40px; /* space for icon */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Wrapper for icon */
.contact-form-wrap .select-wrapper {
  position: relative;
}

/* Custom Bootstrap icon */
.contact-form-wrap .select-wrapper::after {
  content: "\f282"; /* Bootstrap chevron-down icon */
  font-family: "bootstrap-icons";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
    color: #0a2a6e;
    font-weight: 600 !important;
}

@keyframes wa-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* ── CONTACT FORM ── */
.contact-section {
    background: #f8f9ff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section .cd-text{
    color:#ffffff;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 124, 0, .1), transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.contact-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cd-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-details .cd-item{ 
    margin-bottom:5px;
}

.cd-icon {
    width: 42px;
    height: 42px;
    background: rgba(245, 124, 0, .13);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(245, 124, 0, 0.35);
}

.cd-text p:first-child {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}

.cd-text a,
.cd-text p:last-child {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    margin-bottom: 0;
    text-decoration: none;
}

.cd-text a:hover {
    color: var(--ob);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
}

.contact-form-wrap h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.contact-form-wrap .form-sub {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--mid);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color .2s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    background: #fff;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    background: #f57c00;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 124, 0, .4);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
}

.contact-info {
    background: #162045;
    padding: 35px;
    border-radius: 25px;
}

.cd-icon i {
    color: #f89d48ad;
}

.cd-text a:hover {
    color: #f89d48ad;
}

.footer-logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
}

.footer-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    padding: 5px;
}

ul.serv-foot {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

#contact {
  scroll-margin-top: 100px;
}


@media(max-width:576px){
    .wa-float{
        display:flex;
    }
    
    .footer-bottom{
        justify-content:center;
    }
}



