/* =========================================================
   CLEAN CSS V2 — PART 1
   Foundation + Navbar + Buttons + Hero + Utilities
   Preserve Function + Preserve Look + Full Responsive
========================================================= */

/* =========================
   GLOBAL
========================= */
html{
    scroll-behavior:smooth;
}

body{
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

img{
    pointer-events:none;
    -webkit-user-drag:none;
    user-drag:none;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    transition:.3s ease;
}

/* =========================
   SPINNER
========================= */
#spinner{
    opacity:0;
    visibility:hidden;
    transition:opacity .5s ease-out, visibility 0s linear .5s;
    z-index:99999;
}

#spinner.show{
    opacity:1;
    visibility:visible;
    transition:opacity .5s ease-out, visibility 0s linear 0s;
}

/* =========================
   BUTTON SYSTEM
========================= */
.btn{
    font-weight:600;
    transition:.4s ease;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square{
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:normal;
}

.btn-square{
    width:32px;
    height:32px;
}

.btn-sm-square{
    width:34px;
    height:34px;
}

.btn-md-square{
    width:44px;
    height:44px;
}

.btn-lg-square{
    width:56px;
    height:56px;
}

.btn-xl-square{
    width:66px;
    height:66px;
}

.btn.btn-primary{
    color:var(--bs-white);
    border:none;
}

.btn.btn-primary:hover{
    background:var(--bs-dark);
    color:var(--bs-primary);
}

.btn.btn-light{
    color:var(--bs-primary);
    border:none;
}

.btn.btn-light:hover{
    background:var(--bs-primary);
    color:var(--bs-white);
}

/* =========================
   TOPBAR
========================= */
.topbar .dropdown-toggle::after{
    border:none;
    content:"\f107";
    font-family:"Font Awesome 5 Free";
    font-weight:600;
    vertical-align:middle;
    margin-left:8px;
    color:var(--bs-primary);
}

.topbar .dropdown .dropdown-menu{
    background:var(--bs-light);
    padding-top:11px;
    border:0;
    visibility:visible;
    opacity:1;
    transform:rotateX(0);
    transition:.5s;
}

.topbar .dropdown .dropdown-menu a:hover{
    background:var(--bs-primary);
    color:var(--bs-white);
}

/* =========================
   NAVBAR
========================= */
.navbar{
    transition:.35s ease;
}

.navbar img{
    transition:.3s ease;
}

.navbar-light{
    z-index:999;
}

.navbar-light .navbar-brand img{
    max-height:60px;
    transition:.5s;
}

.sticky-top.navbar-light .navbar-brand img{
    max-height:45px;
}

.navbar-light .navbar-nav .nav-link{
    position:relative;
    margin-right:25px;
    padding:35px 0;
    font-family:'Roboto', sans-serif;
    font-size:17px;
    font-weight:400;
    color:var(--bs-white);
    outline:none;
    transition:.5s;
}

.navbar-light .navbar-nav .nav-item .nav-link{
    color:var(--bs-white);
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link{
    padding:20px 0;
    color:var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active{
    color:var(--bs-primary);
}

/* underline effect */
@media (min-width:992px){

    .navbar-light{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .sticky-top.navbar-light{
        position:fixed;
        background:var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before{
        content:"";
        position:absolute;
        bottom:-1px;
        left:50%;
        width:0;
        height:2px;
        background:var(--bs-primary);
        transition:.5s;
    }

    .navbar-light .navbar-nav .nav-link::after{
        content:"";
        position:absolute;
        bottom:-1px;
        left:50%;
        width:0;
        height:0;
        background:var(--bs-primary);
        transition:.5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before{
        width:calc(100% - 2px);
        left:1px;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after{
        width:2px;
        height:12px;
    }
}

/* dropdown */
.navbar .dropdown-toggle::after{
    border:none;
    content:"\f107";
    font-family:"Font Awesome 5 Free";
    font-weight:600;
    vertical-align:middle;
    margin-left:8px;
}

.dropdown .dropdown-menu a:hover{
    background:var(--bs-primary);
    color:var(--bs-white);
}

@media (min-width:992px){

    .navbar .nav-item .dropdown-menu{
        display:block;
        top:100%;
        visibility:hidden;
        opacity:0;
        border:0;
        border-radius:10px;
        transform:rotateX(-75deg);
        transform-origin:0 0;
        transition:.5s;
    }

    .navbar .nav-item:hover .dropdown-menu{
        visibility:visible;
        opacity:1;
        transform:rotateX(0);
        background:var(--bs-light);
    }
}

/* mobile nav */
@media (max-width:991.98px){

    .sticky-top.navbar-light{
        position:relative;
        background:var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler{
        padding:10px 20px;
        border:1px solid var(--bs-primary);
        color:var(--bs-primary);
    }

    .navbar-light .navbar-collapse{
        margin-top:15px;
        border-top:1px solid #ddd;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link{
        padding:10px 0;
        margin-left:0;
        color:var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link{
        color:var(--bs-dark);
    }

    .navbar-light .navbar-brand img{
        max-height:45px;
    }
}

/* =========================
   LOGO SWITCH
========================= */
.logo-white{
    display:none;
}

.navbar.scrolled .logo-default{
    display:none;
}

.navbar.scrolled .logo-white{
    display:block;
}

.logo-img{
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:50%;
    padding:3px;
    background:linear-gradient(45deg,#0d6efd,#00c6ff);
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}

/* =========================
   HERO CAROUSEL
========================= */
.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img{
    height:700px;
}

.header-carousel .header-carousel-item img{
    object-fit:cover;
    animation:imageZoom 10s 1s infinite alternate;
    transition:1s;
}

@keyframes imageZoom{
    0%{
        height:100%;
        opacity:.9;
    }
    25%{
        height:110%;
        opacity:.5;
    }
    50%{
        height:115%;
        opacity:1;
    }
    75%{
        height:110%;
        opacity:.5;
    }
    100%{
        height:100%;
        opacity:.9;
    }
}

.header-carousel .header-carousel-item .carousel-caption{
    position:absolute;
    inset:0;
    padding-top:120px;
    background:rgba(0,0,0,.7);
    display:flex;
    align-items:center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
    position:absolute;
    bottom:30px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--bs-primary);
    color:var(--bs-white);
    font-size:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.5s;
}

.header-carousel .owl-nav .owl-next{
    left:30px;
}

.header-carousel .owl-nav .owl-prev{
    left:30px;
    margin-left:90px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover{
    box-shadow:inset 0 0 100px 0 var(--bs-light);
    color:var(--bs-primary);
}

@media (max-width:991px){
    .header-carousel .header-carousel-item .carousel-caption{
        padding-top:45px;
    }
}

@media (max-width:767px){

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img{
        height:550px;
    }

    .header-carousel .owl-nav .owl-prev{
        left:50%;
        transform:translateX(-50%);
        margin-left:-45px;
    }

    .header-carousel .owl-nav .owl-next{
        left:50%;
        transform:translateX(-50%);
        margin-left:45px;
    }
}

/* =========================
   BREADCRUMB HERO
========================= */
.bg-breadcrumb{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
        url(../img/carousel-1.jpg);
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    transition:.5s;
    padding:140px 0 60px;
}

.bg-breadcrumb .breadcrumb{
    position:relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a{
    color:var(--bs-white);
}

@media (max-width:991px){
    .bg-breadcrumb{
        padding:60px 0;
    }
}

/* =========================
   FLOATING BUTTONS
========================= */
.wa-float{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
    font-size:24px;
    padding:12px 15px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    transition:.3s ease;
}

.wa-float:hover{
    background:#1ebe5d;
    transform:scale(1.1);
}

.back-to-top{
    position:fixed;
    right:20px;
    bottom:90px;
    z-index:998;
    transition:.35s ease;
}

.back-to-top:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 12px 25px rgba(0,0,0,.3);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* =========================
   UTILITIES
========================= */
.about img{
    transition:.3s ease;
}

.about img:hover{
    transform:scale(1.05);
}

.footer a.btn{
    transition:.3s ease;
}

.footer a.btn:hover{
    transform:translateY(-3px);
    opacity:.9;
}

/* =========================================================
   PART 2 — SERVICE + GALLERY + FEATURE + OFFER + BLOG + FAQ
========================================================= */

/* ===============================
   SERVICE
=============================== */
.service-item,
.service .service-item {
    background:#fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all .35s ease;
}

.service-item:hover,
.service .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,.10);
}

.service-img,
.service .service-item .service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.service-img img,
.service .service-item .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-item:hover .service-img img,
.service .service-item:hover .service-img img {
    transform: scale(1.08);
}

.service-item .p-4 {
    padding: 20px !important;
}

.service-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}


/* ===============================
   GALLERY
=============================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-item:hover img {
    transform: scale(1.10);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: opacity .35s ease;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.25),
        transparent
    );
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* ===============================
   FEATURE
=============================== */
.feature .feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background:#fff;
    border: 1px solid transparent;
    transition: all .35s ease;
}

.feature .feature-item:hover {
    transform: translateY(-6px);
    border-color: var(--bs-primary);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-white);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    transition: all .35s ease;
}

.feature .feature-item:hover .feature-icon {
    transform: scale(1.05);
}


/* ===============================
   OFFER / ACCORDION LINK
=============================== */
.offer-section .nav a.accordion-link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 12px;
    background: var(--bs-white);
    transition: all .35s ease;
}

.offer-section .nav a.accordion-link:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.offer-section .nav a.accordion-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.offer-section .nav a.accordion-link h5 {
    margin: 0;
    transition: .35s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--bs-white);
}


/* ===============================
   BLOG
=============================== */
.blog .blog-item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0,0,0,.08);
    transition: all .35s ease;
}

.blog .blog-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 15px 40px rgba(0,0,0,.08),
        inset 0 0 45px rgba(0,0,0,.04);
}

.blog .blog-item a {
    transition: .35s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.blog .blog-img img {
    width: 100%;
    transition: transform .45s ease;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.10);
}

.blog .blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(0,208,132,.12);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-title {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 5;
}

.blog .blog-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    padding: 8px 16px;
    border-radius: 30px;
}

.blog .blog-item:hover .blog-title a:hover {
    color: var(--bs-dark);
}


/* BLOG NAV */
.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    padding: 6px 35px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .35s;
}

.blog .owl-nav .owl-prev {
    left: 0;
}

.blog .owl-nav .owl-next {
    right: 0;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}


/* ===============================
   FAQ
=============================== */
.faq-section .accordion-item {
    border: none;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.faq-section .accordion-button {
    padding: 18px 22px;
    font-weight: 600;
    color: var(--bs-dark);
    background: #fff;
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--bs-secondary);
    background: #fff;
}

.faq-section .accordion-body {
    padding: 20px 22px;
    color: #666;
    line-height: 1.8;
}


/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 991.98px) {
    .service-img {
        height: 190px;
    }

    .gallery-item img {
        height: 220px;
    }

    .feature .feature-item {
        padding: 25px 18px;
    }
}

@media (max-width: 767.98px) {
    .service-img {
        height: 180px;
    }

    .gallery-item img {
        height: 200px;
    }

    .blog .blog-title {
        left: 15px;
        bottom: 15px;
    }

    .blog .blog-title a {
        padding: 6px 14px;
        font-size: 13px;
    }

    .offer-section .nav a.accordion-link {
        padding: 16px;
    }

    .faq-section .accordion-button {
        padding: 16px 18px;
        font-size: 15px;
    }
}

/* =========================================================
   PART 3 — TEAM + TESTIMONIAL + FOOTER + WA + PRICING
========================================================= */


/* ===============================
   TEAM
=============================== */
.team .team-item {
    position: relative;
    padding: 0 25px 25px;
    border-radius: 12px;
    transition: all .4s ease;
    overflow: hidden;
}

.team .team-item::before,
.team .team-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    border-radius: 12px;
    z-index: -1;
    transition: all .45s ease;
}

.team .team-item::before {
    height: 100%;
    background: var(--bs-light);
}

.team .team-item::after {
    height: 0;
    background: var(--bs-primary);
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-img {
    width: 100%;
    height: 100%;
    margin-top: 50%;
    margin-bottom: -50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    position: relative;
    padding: 4px;
    border-radius: 50%;
    border: 4px dotted var(--bs-primary);
    background: var(--bs-white);
    transition: all .35s ease;
}

.team .team-item:hover .team-img {
    border-color: var(--bs-white);
    background: transparent;
}

.team .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform .4s ease;
}

.team .team-item:hover .team-img img {
    transform: scale(1.05);
}

.team .team-title {
    padding: 25px 0;
    text-align: center;
}

.team .team-title h4,
.team .team-title p {
    transition: .35s ease;
    margin-bottom: 0;
}

.team .team-title p {
    margin-top: 8px;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: #fff;
}

.team .team-icon {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team .team-icon a {
    transition: .35s ease;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: #fff;
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}


/* ===============================
   TESTIMONIAL
=============================== */
.testimonial .testimonial-item {
    position: relative;
    padding: 0 25px 25px;
    margin-bottom: 30px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    height: calc(100% - 50px);
    border-radius: 12px;
    background: var(--bs-light);
    z-index: -1;
}

.testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px double var(--bs-light);
    background: #fff;
    object-fit: cover;
}

.testimonial-text {
    padding: 25px 0;
    text-align: center;
    line-height: 1.8;
    color: #666;
}

.testimonial-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-quote-left,
.testimonial-quote-right {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote-left {
    top: 20px;
    left: 25px;
}

.testimonial-quote-right {
    right: 25px;
    bottom: -30px;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    padding: 5px 30px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: #fff;
    transition: .35s ease;
}

.testimonial .owl-nav .owl-prev {
    left: 0;
}

.testimonial .owl-nav .owl-next {
    right: 0;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: #fff;
}


/* DOT */
.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bs-primary);
    position: relative;
    transition: .35s ease;
}

.testimonial-carousel .owl-dot.active {
    background: var(--bs-secondary);
}

.testimonial-carousel .owl-dot span {
    display: none;
}

.testimonial-carousel .owl-dot::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--bs-primary);
}


/* ===============================
   PRICING
=============================== */
#price {
    background: linear-gradient(135deg, #f8f9fa, #eef1f5);
}

.price-clean,
.price-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 40px 30px;
    transition: all .4s ease;
}

.price-clean {
    background: rgba(255,255,255,.7);
    border:1px solid rgba(255,255,255,.9);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 10px 40px rgba(0,0,0,.05);
}

.price-clean::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: .5s;
    background: radial-gradient(circle, rgba(255,255,255,.4), transparent 60%);
}

.price-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0,0,0,.12);
}

.price-clean:hover::before {
    opacity: 1;
}

.price-clean h5 {
    letter-spacing: 1px;
}

.price-clean span {
    color: #555;
}

.price-clean strong {
    color: #000;
    font-weight: 600;
}

.price-clean .btn {
    border: none;
    color: #fff;
    background: rgba(0,0,0,.88);
}

.price-clean .btn:hover {
    background: #000;
    transform: scale(1.04);
}

.price-clean .border-bottom {
    border-color: rgba(0,0,0,.08) !important;
}


/* CLASSIC CARD */
.price-card {
    text-align: center;
    background: #f8f8f8;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.active {
    background: #fff;
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.price {
    margin: 15px 0;
    font-size: 40px;
    font-weight: 700;
    color: #12b76a;
}

.price-card ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.price-card ul li {
    margin: 10px 0;
    color: #555;
}

.price-card .btn {
    border: none;
    background: #12b76a;
}

.badge-best {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 30px;
    color: #fff;
    background: #ef4444;
}


/* ===============================
   WHATSAPP FLOAT
=============================== */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(37,211,102,.35);
}

.wa-float:hover {
    background: #1ebe5d;
    transform: scale(1.08);
}


/* ===============================
   FOOTER
=============================== */
.footer {
    background: var(--bs-secondary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a,
.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a {
    color: rgba(255,255,255,.8);
    transition: .35s ease;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-btn a,
.footer .footer-btn a i {
    transition: .35s ease;
}

.footer .footer-btn a:hover {
    transform: translateY(-3px);
    opacity: .92;
    background: #fff;
}

.footer .footer-btn a:hover i {
    color: var(--bs-primary);
}

.copyright {
    background: var(--bs-dark);
}


/* ===============================
   FINAL POLISH
=============================== */
html {
    scroll-behavior: smooth;
}

.about img {
    transition: transform .35s ease;
}

.about img:hover {
    transform: scale(1.05);
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
}


/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 991.98px) {
    .team .team-item,
    .testimonial .testimonial-item,
    .price-clean,
    .price-card {
        padding: 30px 22px;
    }

    .price {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .wa-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        right: 15px;
        bottom: 15px;
    }

    .testimonial-quote-left,
    .testimonial-quote-right {
        width: 50px;
        height: 50px;
    }

    .price {
        font-size: 30px;
    }

    .badge-best {
        font-size: 11px;
        padding: 4px 10px;
    }
}