body {
    font-family: 'Segoe UI', sans-serif;
}

.hero {
    padding: 90px 0;
}

.hero-section h1 {
    font-size: 2.6rem;
    font-weight: 700;
}

.hero-section p {
    color: #666;
    font-size: 1.05rem;
}

.btn-primary-custom {
    background: #f05159;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
}

    .btn-primary-custom:hover {
        filter: brightness(0.95);
    }

.highlight {
    color: #f05159;
}

.section {
    padding: 80px 0;
}

    .section h2 {
        font-weight: 600;
        margin-bottom: 15px;
    }

.bullet-check {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .bullet-check li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #333;
    }

        /* SVG Check Icon */
        .bullet-check li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 2px;
            width: 20px;
            height: 20px;
            background-repeat: no-repeat;
            background-size: contain;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%23f48665'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
        }

.video-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

    .video-thumb img {
        width: 100%;
        border-radius: 10px;
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

footer {
    padding: 25px 0;
    background: #000;
    color: #aaa;
    text-align: left;
}

    footer p {
        margin-bottom: 0
    }



.contact-modern {
    padding: 80px 0 80px 0;
}

.contact-info h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info p {
    color: #666;
    margin-bottom: 0;
}

.contact-info a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}



.modern-input {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

    .modern-input:focus {
        border-color: #000;
        box-shadow: 0 0 0 0.15rem rgba(0,0,0,0.1);
    }

.modern-btn {
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    background: #f05159;
    color: #fff;
    border: none;
}

    .modern-btn:hover {
        filter: brightness(0.95);
    }

/* Override Bootstrap warning/dark button colors used in the markup */
.btn-warning {
    background: #f05159 !important;
    border-color: #f05159 !important;
    color: #fff !important;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

    .btn-warning:hover {
        filter: brightness(0.95);
        transform: translateY(-4px);
        box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    }

.btn-dark {
    background: #f05159 !important;
    border-color: #f05159 !important;
    color: #fff !important;
}

    .btn-dark:hover {
        filter: brightness(0.95);
    }

.contact-box {
    padding: 22px 25px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    align-items: flex-start;
}

    .contact-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    }

    .contact-box .icon {
        flex-shrink: 0;
        margin-top: 3px;
        margin-right: 20px;
    }

        .contact-box .icon svg {
            display: block;
        }

    .contact-box .content h5 {
        font-weight: 600;
        margin-bottom: 6px;
    }

    .contact-box .content p {
        margin-bottom: 6px;
    }

.map-location iframe {
    height: 177px;
    width: 100%;
    filter: brightness(96%) contrast(106%) saturate(44%) blur(0) hue-rotate(0deg);
    transition-duration: 0.4s;
    margin-top: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 25px 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.4);
}

/* Footer layout: left copyright, right social icons */
footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Social buttons */
.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .footer-social .social {
        display: inline-flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.15);
        color: #fff;
        background: transparent;
        transition: all .15s ease;
        text-decoration: none;
    }

        .footer-social .social svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* Hover / focus */
        .footer-social .social:hover,
        .footer-social .social:focus {
            transform: translateY(-3px);
            border-color: #f05159;
            box-shadow: 0 8px 20px rgba(244,134,101,0.15);
            background: rgba(244,134,101,0.06);
            outline: none;
        }

/* Small screens: stack and center */
@media (max-width: 767.98px) {
    footer {
        text-align: center;
    }

        footer .container {
            flex-direction: column;
            align-items: center;
        }

    .footer-social {
        justify-content: center;
        margin-top: 0.5rem;
    }
}
/* Header phone button */
.navbar .btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f05159;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(254,80,79,0.12);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    white-space: nowrap;
}

    .navbar .btn-phone svg {
        width: 18px;
        height: 18px;
        display: block;
        fill: currentColor;
        flex-shrink: 0;
    }

    .navbar .btn-phone:hover,
    .navbar .btn-phone:focus {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(254,80,79,0.18);
        outline: none;
    }

/* hide phone text on small screens (show only icon) */
@media (max-width: 991.98px) {
    .navbar .btn-phone .phone-text {
        display: none;
    }
}

/* small spacing to separate from nav links */
.navbar .header-phone-wrap {
    margin-left: 1rem;
}
.hero-section {
    padding: 80px 0;
    background: #f7f7f7 url(../images/service3.webp);
    position: relative;
    overflow: hidden;
    background-position: top right;
    background-repeat: no-repeat;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    color: #1f2933;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 420px;
}

.hero-image {
    max-height: 420px;
}


.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 50px 0;
        text-align: center;
        background-position: left;
    }
    .section {
        padding: 40px 0;
    }
    .hero-section h1 {
        font-size: 2rem;
        font-weight: 700;
    }
    .contact-card {
        padding: 25px 25px;
    }
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-image {
        max-height: 320px;
    }
}
.nav-link {
    font-size:16px !important;
    font-weight:600
}
.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

    .feature-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }

    .feature-box .icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(247,59,59,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #f48665;
        flex-shrink: 0;
    }

    .feature-box span {
        font-weight: 500;
    }
.bullet-icon {
    list-style: none;
    padding-left: 0;
}

    .bullet-icon li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .bullet-icon .icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(247,59,59,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #f48665;
        flex-shrink: 0;
    }

        .bullet-icon .icon svg {
            width: 18px;
            height: 18px;
        }
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 30px;
    background: rgba(244,134,101,0.12);
    color: #f48665;
    font-weight: 500;
    font-size: 0.9rem;
}

    .trust-badge svg {
        width: 16px;
        height: 16px;
    }
.client-images img {
    display: inline-block;
    width: 100px;
    gap: 20px; margin: 0 10px; filter: grayscale(100%) brightness(90%); transition: all 0.3s ease; }

    .client-images img:hover {
        filter: grayscale(0) brightness(100%);
        transform: translateY(-3px);
    }
/* --- existing file kept above --- */
/* (paste this block into your existing css\style.css replacing/merging with the existing content) */

/* Fixed / sticky navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060; /* above page content */
    transition: padding 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    will-change: padding, box-shadow, background-color;
}

    /* When page is scrolled, reduce header height and add subtle shadow */
    .navbar.scrolled {
        box-shadow: 0 8px 26px rgba(0,0,0,0.08);
        background-color: rgba(255,255,255,0.98);
        backdrop-filter: blur(4px);
    }

        /* Slightly tighten vertical padding when scrolled */
        .navbar.scrolled .navbar-brand,
        .navbar.scrolled .nav-link {
            transition: color .18s ease;
        }

        /* ensure phone button stays vertically centered in smaller navbar */
        .navbar.scrolled .header-phone-wrap .btn-phone {
            transform: translateY(0);
        }

/* When navbar is fixed it will overlap content — we set body padding via JS,
   but provide a fallback CSS variable (in case JS disabled) */
:root {
    --site-nav-height: 80px;
}


/* Responsive: reduce the fallback nav height on small screens */
@media (max-width: 991px) {
    :root {
        --site-nav-height: 64px;
    }
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: absolute;
        top: 91px;
        background: #ffff;
        width: 100%;
        padding-left: 26px;
    }

  
}

/* Anchor offset: ensure linked sections don't hide under the fixed header */
section[id], .hero-section, .section {
    /* Add a small extra gap so heading isn't flush with header */
    scroll-margin-top: 80px;
}

/* minor visual polish for fixed navbar on larger screens */
@media (min-width: 992px) {
    .navbar {
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
    }

        .navbar.scrolled {
            padding-top: 0.45rem;
            padding-bottom: 0.45rem;
        }
}



    /* Fallback for older browsers that don't support flex gap */
    .navbar .navbar-nav .nav-item {
        margin-left: 1.5rem;
    }

        .navbar .navbar-nav .nav-item:first-child {
            margin-left: 0;
        }

/* Remove extra horizontal spacing when nav stacks on small screens */
@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        gap: 0;
    }

        .navbar .navbar-nav .nav-item {
            margin-left: 0;
        }

}
.nav-link:focus, .nav-link:hover {
    color: #f05159;
}
.navbar-toggler:focus {
    box-shadow: none
}
@media (max-width: 1199px) and (min-width: 992px) {
    .navbar .navbar-nav .nav-item {
        margin-left: 1rem;
    }
}
/* WhatsApp button in contact boxes */
.contact-box .whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: color .15s ease;
    margin-top: 6px;
}

    .contact-box .whatsapp .wa-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #25D366; /* WhatsApp green */
        box-shadow: 0 8px 22px rgba(37,211,102,0.10);
        transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
        flex-shrink: 0;
    }

        .contact-box .whatsapp .wa-icon svg {
            width: 18px;
            height: 18px;
            display: block;
            fill: #fff;
        }

    /* Hover / focus — subtle lift to match other components */
    .contact-box .whatsapp:hover,
    .contact-box .whatsapp:focus {
        color: #0a0a0a;
        text-decoration: none;
        outline: none;
    }

        .contact-box .whatsapp:hover .wa-icon,
        .contact-box .whatsapp:focus .wa-icon {
            transform: translateY(-3px);
            box-shadow: 0 16px 36px rgba(37,211,102,0.16);
        }

 /* Small screens: keep icon and label balanced */
@media (max-width: 575.98px) {
    .contact-box .whatsapp {
        gap: 8px;
    }

        .contact-box .whatsapp .wa-icon {
            width: 32px;
            height: 32px;
        }

        .contact-box .whatsapp span:last-child {
            font-size: 0.95rem;
        }
}
/* Mobile fixed action buttons (call + enquire) */
.mobile-bottom-actions {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    padding: 12px;
    background: linear-gradient(to top, rgba(255,255,255,0.02), transparent);
    pointer-events: auto;
    background: #fff;
}

    .mobile-bottom-actions .actions {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        gap: 10px;
    }

        .mobile-bottom-actions .actions a {
            flex: 1 1 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            border-radius: 8px;
            padding: 12px 14px;
            font-weight: 700;
            font-size: 1rem;
            transition: transform .12s ease, box-shadow .12s ease;
        }

    /* Primary call button (filled) */
    .mobile-bottom-actions .btn-call {
        background: #f05159;
        color: #fff;
        box-shadow: 0 10px 30px rgba(254,80,79,0.12);
        border: none;
    }

    /* Secondary enquire button (outlined) */
    .mobile-bottom-actions .btn-enquire {
        background: #fff;
        color: #f05159;
        border: 1px solid rgba(34,34,34,0.06);
        box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    }

    /* Hover / active */
    .mobile-bottom-actions .actions a:hover {
        transform: translateY(-3px);
    }

    .mobile-bottom-actions .actions .fa {
        font-size: 18px;
    }

/* Show only on mobile viewports, add bottom body padding so content isn't hidden */
@media (max-width: 767.98px) {
    .mobile-bottom-actions {
        display: block;
    }

    body {
        padding-bottom: 92px !important;
    }
    /* reserve room for the action bar */
}

/* Hide on larger screens explicitly */
@media (min-width: 768px) {
    .mobile-bottom-actions {
        display: none !important;
    }
}
.thankyou-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 15px 60px;
    background: #fff;
}


.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(244,134,101,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f48665;
}

    .success-icon svg {
        width: 32px;
        height: 32px;
    }

.thankyou-card h1 {
    font-weight: 700;
}

.thankyou-card .btn {
    border-radius: 10px;
    padding: 10px 22px;
}
.card {
    border: solid 1px rgb(212 212 212 / 18%)
}
.floating-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #25D366; /* WhatsApp green */
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

    /* Slight hover/active feedback */
    .floating-whatsapp:hover,
    .floating-whatsapp:focus {
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.22);
        opacity: 0.98;
        outline: none;
    }

    /* icon size */
    .floating-whatsapp .wa-inner i {
        font-size: 22px;
        line-height: 1;
    }

    /* Keep the WA button above the mobile-bottom-actions when on small screens */
    @media (max-width: 767.98px) {
        .floating-whatsapp {
            bottom: 86px; /* mobile bottom bar height + spacing */
            right: 16px;
        }
    }

    /* Reduce size on very small screens */
    @media (max-width: 360px) {
        .floating-whatsapp {
            width: 50px;
            height: 50px;
        }

            .floating-whatsapp .wa-inner i {
                font-size: 20px;
            }
    }
/* MAIN SECTION */
.reviews-section-main {
    display: flex;
    gap: 40px;
    padding: 70px 6%;
    align-items: center;
}

/* LEFT SIDE */
.reviews-summary {
    flex: 0 0 280px;
}

    .reviews-summary h3 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 10px;
    }

.total-stars {
    color: #fbbc04;
    font-size: 22px;
    margin-bottom: 8px;
}

.summary-text {
    color: #666;
    margin-bottom: 25px;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #444;
}

/* SLIDER */
.reviews-slider-viewport {
    flex: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.reviews-slider-track {
    display: flex;
    gap: 20px;
}

/* CARD */
.review-card {
  
    background: #fff;
    border-radius: 20px;
    padding: 18px;
   
    transition: 0.3s ease;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, .05);
}

    .review-card h4 {
        margin-bottom:0;
        font-size:16px
    }

    .review-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 4px;
    }
        .review-header span {
            color: #999;
            font-size: 12px;
            line-height: 1;
        }

        .avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

.red {
    background: #e53935;
}

.purple {
    background: #8e24aa;
}

.blue {
    background: #3949ab;
}

.green {
    background: #00897b;
}

.card-stars {
    color: #fbbc04;
    margin-bottom: 5px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom:0
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .reviews-section-main {
        flex-direction: column;
        text-align: center;
    }

    .reviews-summary {
        width: 100%;
    }

    .reviews-slider-viewport {
        width: 100%;
    }
}

@media(max-width:600px) {
    .review-card {
        min-width: 85%;
    }
}
 /* Append to end of css/style.css — Owl carousel small theme tweaks */
.reviews-owl .review-card {
    margin: 0;
}

.owl-theme .owl-nav [class*=owl-] {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

    .owl-theme .owl-nav [class*=owl-]:hover {
        transform: translateY(-3px);
    }

.owl-theme .owl-dots {
    text-align: center;
    margin-top: 12px;
}

    .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(0,0,0,0.12);
        display: inline-block;
    }

    .owl-theme .owl-dots .owl-dot.active span {
        background: #f05159;
    }

/* ensure carousel respects your layout spacing */
.reviews-section-main {
    gap: 28px;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: start;
    padding: 40px 0;
}

@media (max-width: 991.98px) {
    .reviews-section-main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reviews-summary {
        order: 2;
        text-align: center;
    }

    .reviews-slider-viewport {
        order: 1;
    }
}
/* Buttons under Google reviews summary */
.reviews-summary .reviews-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .reviews-summary .reviews-action-buttons .btn {
        border-radius: 10px;
        font-weight: 700;
        padding: 10px 12px;
    }

/* Outline variant matching site */
.reviews-summary .btn-outline-secondary {
    color: #333;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

    .reviews-summary .btn-outline-secondary:hover {
        background: #f8f9fa;
    }

    /* Make buttons full width on small screens, inline on larger */
@media (min-width: 768px) {
    .reviews-summary .reviews-action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .reviews-summary .reviews-action-buttons .btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}
/* Reviews nav buttons (below Google badge) */
.reviews-nav-inline {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* circular nav buttons */
.reviews-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
    color: #222;
}

    .reviews-nav-btn:hover,
    .reviews-nav-btn:focus {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
        outline: none;
    }

    .reviews-nav-btn:disabled {
        opacity: 0.45;
        cursor: default;
    }

/* Hide default Owl nav so only summary buttons are visible */
.reviews-owl .owl-nav, .owl-nav {
    display: none !important;
}

/* Small screens: center the nav and keep spacing */
@media (max-width: 575.98px) {
    .reviews-nav-inline {
        justify-content: center;
    }

    .reviews-nav-btn {
        width: 40px;
        height: 40px;
    }
}
/* Floating WhatsApp button (appended) */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #25D366; /* WhatsApp green */
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

    /* Slight hover/active feedback */
    .whatsapp-float:hover,
    .whatsapp-float:focus {
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.22);
        opacity: 0.98;
        outline: none;
    }

    /* icon size */
    .whatsapp-float .wa-inner i {
        font-size: 22px;
        line-height: 1;
    }

/* Keep the WA button above the mobile-bottom-actions when on small screens */
@media (max-width: 767.98px) {
    .whatsapp-float {
        bottom: 86px; /* mobile bottom bar height + spacing */
        right: 16px;
    }
    #chat-bot-launcher-container.chat-bot-avatar-launcher, #chat-bot-launcher-container.chat-bot-launcher-notext {
        bottom: 86px !important;
    }
}

/* Reduce size on very small screens */
@media (max-width: 360px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

        .whatsapp-float .wa-inner i {
            font-size: 20px;
        }
}