/* =======================
TOP BAR
======================= */

.top-bar{
    background:#0B6E3A;
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

.top-bar-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-left a,
.top-right a,
.top-right span{
    color:#fff;
    text-decoration:none;
}

/* ===================================
NAVBAR
=================================== */

.main-navbar{
    background:#ffffff;
    padding:15px 0;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
    transition:.3s ease;
}

.logo{
    height:55px;
    width:auto;
    transition:.3s ease;
}

/* ==========================
NAV LINKS
========================== */

.navbar-nav{
    align-items:center;
}

.navbar-nav .nav-link{
    position:relative;
    font-size:15px;
    font-weight:600;
    color:#222;
    margin:0 12px;
    padding:10px 0;
    transition:.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#0B6E3A;
}

/* Hover Line Effect */

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#0B6E3A;
    transition:.3s ease;
}

/* Remove underline from dropdown menu parent */

.navbar-nav .dropdown-toggle::after{
    border-top: .3em solid;
    width:auto !important;
    height:auto !important;
    background:none !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:100%;
}

/* ==========================
DROPDOWN
========================== */

.dropdown-menu{
    border:none;
    border-radius:15px;
    padding:10px 0;
    min-width:260px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.dropdown-item{
    padding:12px 22px;
    font-size:14px;
    font-weight:500;
    color:#333;
    transition:.3s ease;
}

.dropdown-item:hover{
    background:#0B6E3A;
    color:#fff;
    padding-left:28px;
}

/* ==========================
DESKTOP HOVER DROPDOWN
========================== */

@media (min-width:992px){

    .navbar .dropdown-menu{
        display:block;
        opacity:0;
        visibility:hidden;
        transform:translateY(10px);
        transition:all .3s ease;
        margin-top:0;
    }

    .navbar .dropdown:hover .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .navbar .dropdown-toggle::after{
        transition:.3s ease;
    }

    .navbar .dropdown:hover .dropdown-toggle::after{
        transform:rotate(180deg);
    }
}

/* ==========================
NAV BUTTONS
========================== */

.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-call{
    background:#f5f5f5;
    color:#222;
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
    transition:.3s ease;
}

.btn-call:hover{
    background:#eaeaea;
    color:#0B6E3A;
}

.btn-quote{
    background:#0B6E3A;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:8px;
    font-weight:600;
    transition:.3s ease;
}

.btn-quote:hover{
    background:#08562D;
    color:#fff;
    transform:translateY(-2px);
}

/* ==========================
TABLET
========================== */

@media (min-width:768px) and (max-width:991px){

    .logo{
        height:50px;
    }

    .navbar-nav{
        padding-top:15px;
    }

    .navbar-nav .nav-link{
        margin:5px 0;
    }

    .nav-actions{
        margin-top:20px;
        flex-wrap:wrap;
    }
}

/* ==========================
MOBILE
========================== */

@media (max-width:991px){

    .top-bar{
        display:none;
    }

    .navbar-toggler{
        border:none;
        box-shadow:none !important;
    }

    .navbar-collapse{
        padding-top:15px;
    }

    .navbar-nav{
        align-items:flex-start;
    }

    .navbar-nav .nav-link{
        margin:5px 0;
        width:100%;
    }

    .navbar-nav .nav-link::after{
        display:none;
    }

    .dropdown-menu{
        border:none;
        box-shadow:none;
        padding-left:15px;
        background:#f8f9fa;
    }

    .dropdown-item{
        padding:10px 15px;
    }

    .nav-actions{
        flex-direction:column;
        width:100%;
        margin-top:20px;
    }

    .btn-call,
    .btn-quote{
        width:100%;
        text-align:center;
    }

    .logo{
        height:50px;
    }

}

/* =======================
NAVBAR
======================= */

/*.main-navbar{*/
/*    background:#fff;*/
/*    box-shadow:0 2px 15px rgba(0,0,0,0.08);*/
/*    padding:15px 0;*/
/*    z-index:999;*/
/*}*/

/*.logo{*/
/*    height:50px;*/
/*    width:auto;*/
/*}*/

/*.navbar-nav .nav-link{*/
/*    font-size:15px;*/
/*    font-weight:600;*/
/*    color:#222;*/
/*    margin:0 10px;*/
/*    transition:0.3s;*/
/*}*/

/*.navbar-nav .nav-link:hover{*/
/*    color:#0B6E3A;*/
/*}*/

/*.dropdown-menu{*/
/*    border:none;*/
/*    border-radius:12px;*/
/*    box-shadow:0 10px 30px rgba(0,0,0,0.10);*/
/*}*/

/*.dropdown-item{*/
/*    padding:10px 20px;*/
/*    font-size:14px;*/
/*}*/

/*.dropdown-item:hover{*/
/*    background:#0B6E3A;*/
/*    color:#fff;*/
/*}*/

/*.nav-actions{*/
/*    display:flex;*/
/*    gap:10px;*/
/*}*/

/*.btn-call{*/
/*    background:#f5f5f5;*/
/*    color:#222;*/
/*    text-decoration:none;*/
/*    padding:10px 18px;*/
/*    border-radius:8px;*/
/*    font-weight:600;*/
/*}*/

/*.btn-quote{*/
/*    background:#0B6E3A;*/
/*    color:#fff;*/
/*    text-decoration:none;*/
/*    padding:10px 20px;*/
/*    border-radius:8px;*/
/*    font-weight:600;*/
/*}*/

/*.btn-quote:hover{*/
/*    background:#08562D;*/
/*    color:#fff;*/
/*}*/

/* =======================
RESPONSIVE
======================= */

/*@media(max-width:991px){*/

/*    .top-bar{*/
/*        display:none;*/
/*    }*/

/*    .nav-actions{*/
/*        flex-direction:column;*/
/*        margin-top:20px;*/
/*    }*/

/*    .navbar-nav{*/
/*        padding-top:15px;*/
/*    }*/

/*    .navbar-nav .nav-link{*/
/*        margin:5px 0;*/
/*    }*/

/*    .logo{*/
/*        height:55px;*/
/*    }*/
/*}*/


/* ===================================
HERO SECTION
=================================== */

.hero-section{
    background:#fff;
    padding:80px 0;
    overflow:hidden;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center;
}

.hero-logo{
    width:120px;
    margin-bottom:30px;
}

.hero-tagline{
    display:inline-block;
    font-size:18px;
    font-weight:700;
    color:#0B6E3A;
    font-style:italic;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:5rem;
    line-height:1;
    font-weight:900;
    color:#1d1d1d;
    margin-bottom:25px;
    text-transform:uppercase;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#444;
    max-width:650px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.btn-primary{
    background:#0B6E3A;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary:hover{
    background:#08562D;
    color:#fff;
}

.btn-secondary{
    border:2px solid #0B6E3A;
    color:#0B6E3A;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.hero-brands{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    align-items:center;
}

.hero-brands img{
    height:110px;
    object-fit:contain;
}

/* ===================================
DESKTOP GALLERY
=================================== */

.hero-gallery{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:170px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

/* Desktop Brochure Style */

@media (min-width:1024px){

    .heroGallerySlider .swiper-wrapper{
        display:flex;
        flex-direction:column;
        gap:15px;
    }
    
    /*.heroGallerySlider .swiper-wrapper {*/
    /*    display: flex;*/
    /*    flex-direction: row;*/
    /*    flex-wrap: wrap;*/
    /*    gap: 15px;*/
    /*}*/

    .heroGallerySlider .swiper-slide{
        width: 100%;
        height:auto !important;
        /*width: calc(50% - 7.5px);*/

    }

    .heroGallerySlider .swiper-pagination{
        display:none;
    }

}

/* ===================================
TABLET
=================================== */

@media (max-width:1023px){

    .hero-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-brands{
        justify-content:center;
    }

    .hero-brands img{
        height:85px;
        object-fit:contain;
    }

    /* Swiper Slider */

    .heroGallerySlider{
        width:100%;
        padding-bottom:45px;
    }

    .heroGallerySlider .swiper-wrapper{
        display:flex;
        flex-direction:row;
        gap:0;
    }

    .heroGallerySlider .swiper-slide{
        width:100%;
        height:auto;
    }

    .heroGallerySlider .gallery-item{
        margin:0;
    }

    .heroGallerySlider .gallery-item img{
        height:350px;
        width:100%;
        object-fit:cover;
        border-radius:12px;
    }

    .heroGallerySlider .swiper-pagination{
        bottom:0 !important;
    }

    .heroGallerySlider .swiper-pagination-bullet{
        background:#0B6E3A;
        opacity:.4;
    }

    .heroGallerySlider .swiper-pagination-bullet-active{
        opacity:1;
    }

}

/* ===================================
MOBILE
=================================== */

@media (max-width:767px){

    .hero-section{
        padding:50px 0;
    }

    .hero-logo{
        width:90px;
    }

    .hero-content h1{
        font-size:2.8rem;
        line-height:1.1;
    }

    .hero-tagline{
        font-size:16px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-brands{
        gap:15px;
    }

    .hero-brands img{
        height:45px;
    }

    .heroGallerySlider{
        padding-bottom:40px;
    }

    .heroGallerySlider .gallery-item img{
        height:250px;
        border-radius:10px;
    }

}

/* ===================================
EXTRA SMALL MOBILE
=================================== */

@media (max-width:480px){

    .hero-content h1{
        font-size:2.2rem;
    }

    .hero-content p{
        font-size:14px;
    }

    .hero-tagline{
        font-size:15px;
    }

    .hero-brands{
        gap:10px;
    }

    .hero-brands img{
        height:38px;
    }

    .heroGallerySlider .gallery-item img{
        height:220px;
    }

}



/* ===================================
ABOUT SECTION
=================================== */

.about-section{
    padding:100px 0;
    background:#f8fafc;
}

.section-heading{
    max-width:800px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    background:#e8f5ee;
    color:#0B6E3A;
    padding:8px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
    color:#1f2937;
}

.section-heading p{
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.about-content h3{
    font-size:2.2rem;
    font-weight:800;
    margin-bottom:20px;
    color:#111827;
}

.about-content p{
    color:#4b5563;
    line-height:1.9;
    margin-bottom:20px;
}

.about-buttons{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.about-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.about-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-8px);
}

.card-icon{
    width:60px;
    height:60px;
    background:#0B6E3A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    font-size:24px;
    margin-bottom:20px;
}

.about-card h4{
    font-size:20px;
    margin-bottom:12px;
    font-weight:700;
}

.about-card p{
    font-size:15px;
    line-height:1.7;
    color:#6b7280;
}

.about-highlights{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.highlight-box{
    background:#0B6E3A;
    color:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:20px;
}

.highlight-box h3{
    font-size:2.5rem;
    font-weight:800;
    margin-bottom:10px;
}

.highlight-box span{
    font-size:15px;
}

/* ==========================
TABLET
========================== */

@media(max-width:1023px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-buttons{
        justify-content:center;
    }

    .about-highlights{
        grid-template-columns:repeat(4,1fr);
    }

}

/* ==========================
MOBILE
========================== */

@media(max-width:767px){

    .about-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:2rem;
    }

    .section-heading p{
        font-size:15px;
    }

    .about-content h3{
        font-size:1.8rem;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .about-buttons{
        flex-direction:column;
    }

    .about-highlights{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .highlight-box h3{
        font-size:2rem;
    }

}



/* ===================================
OUR BUSINESSES
=================================== */

.business-section{
    padding:100px 0;
    background:#ffffff;
}

.business-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.business-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-decoration:none;
    color:#222;
    position:relative;
    overflow:hidden;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s ease;
}

.business-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:#0B6E3A;
}

.business-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.business-logo{
    height:80px;
    object-fit:contain;
    margin-bottom:25px;
}

.business-icon{
    width:70px;
    height:70px;
    background:#e8f5ee;
    color:#0B6E3A;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    font-size:30px;
    margin-bottom:25px;
}

.business-card h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
    color:#1f2937;
}

.business-tag{
    display:inline-block;
    background:#0B6E3A;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.business-card p{
    color:#6b7280;
    line-height:1.9;
    margin:0;
}

/* Hover */

.business-card:hover .business-icon{
    background:#0B6E3A;
    color:#fff;
}

.business-card:hover .business-tag{
    background:#08562D;
}

/* ==========================
TABLET
========================== */

@media (min-width:768px) and (max-width:1023px){

    .business-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .business-card{
        padding:30px;
    }

    .business-card h3{
        font-size:22px;
    }

}

/* ==========================
MOBILE
========================== */

@media (max-width:767px){

    .business-section{
        padding:70px 0;
    }

    .business-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .business-card{
        padding:25px;
        text-align:center;
    }

    .business-logo{
        height:70px;
        margin:0 auto 20px;
    }

    .business-icon{
        margin:0 auto 20px;
    }

    .business-card h3{
        font-size:20px;
    }

    .business-card p{
        font-size:15px;
    }

}

/* ===================================
SERVICES SECTION
=================================== */

.services-section{
    padding:100px 0;
    background:#f8fafc;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.service-category-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
}

.service-category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.service-image{
    height:260px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-category-card:hover .service-image img{
    transform:scale(1.08);
}

.service-content{
    padding:30px;
}

.service-content h3{
    font-size:28px;
    font-weight:800;
    color:#0B6E3A;
    margin-bottom:20px;
    line-height:1.3;
}

.service-content ul{
    margin:0;
    padding-left:22px;
}

.service-content ul li{
    margin-bottom:12px;
    color:#444;
    line-height:1.7;
    font-size:16px;
}

/* ==========================
TABLET
========================== */

@media (min-width:768px) and (max-width:1023px){

    .services-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .service-image{
        height:280px;
    }

    .service-content h3{
        font-size:24px;
    }

}

/* ==========================
MOBILE
========================== */

@media (max-width:767px){

    .services-section{
        padding:70px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-image{
        height:220px;
    }

    .service-content{
        padding:25px;
    }

    .service-content h3{
        font-size:22px;
    }

    .service-content ul li{
        font-size:15px;
    }

}


/* ===================================
SERVICES SECTION
=================================== */

/*.services-section{*/
/*    padding:100px 0;*/
/*    background:#f8fafc;*/
/*}*/

/*.services-grid{*/
/*    display:grid;*/
/*    grid-template-columns:repeat(3,1fr);*/
/*    gap:30px;*/
/*    margin-top:60px;*/
/*}*/

/*.service-card{*/
/*    background:#fff;*/
/*    border-radius:20px;*/
/*    overflow:hidden;*/
/*    box-shadow:0 10px 25px rgba(0,0,0,.08);*/
/*    transition:.4s ease;*/
/*}*/

/*.service-card:hover{*/
/*    transform:translateY(-10px);*/
/*    box-shadow:0 20px 40px rgba(0,0,0,.12);*/
/*}*/

/*.service-image{*/
/*    height:250px;*/
/*    overflow:hidden;*/
/*}*/

/*.service-image img{*/
/*    width:100%;*/
/*    height:100%;*/
/*    object-fit:cover;*/
/*    transition:.5s;*/
/*}*/

/*.service-card:hover .service-image img{*/
/*    transform:scale(1.08);*/
/*}*/

/*.service-content{*/
/*    padding:25px;*/
/*    text-align:center;*/
/*}*/

/*.service-content h3{*/
/*    font-size:22px;*/
/*    font-weight:700;*/
/*    color:#1f2937;*/
/*    margin-bottom:15px;*/
/*}*/

/*.service-content p{*/
/*    color:#6b7280;*/
/*    line-height:1.8;*/
/*    margin:0;*/
/*}*/

/* Tablet */

/*@media (max-width:1023px){*/

/*    .services-grid{*/
/*        grid-template-columns:repeat(2,1fr);*/
/*        gap:25px;*/
/*    }*/

/*    .service-image{*/
/*        height:220px;*/
/*    }*/

/*}*/

/* Mobile */

/*@media (max-width:767px){*/

/*    .services-section{*/
/*        padding:70px 0;*/
/*    }*/

/*    .services-grid{*/
/*        grid-template-columns:1fr;*/
/*        gap:20px;*/
/*    }*/

/*    .service-image{*/
/*        height:220px;*/
/*    }*/

/*    .service-content{*/
/*        padding:20px;*/
/*    }*/

/*    .service-content h3{*/
/*        font-size:20px;*/
/*    }*/

/*}*/


/* ===================================
BRANDS SECTION
=================================== */

.brands-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

.brands-divider{
    width:100%;
    height:2px;
    background:#0B6E3A;
    margin:40px 0 50px;
}

/* ==========================
MARQUEE
========================== */

.brands-marquee{
    width:100%;
    overflow:hidden;
    position:relative;
}

.brands-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:brandScroll 35s linear infinite;
}

.brands-marquee:hover .brands-track{
    animation-play-state:paused;
}

.brand-item{
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 45px;
}

.brand-item img{
    max-height:80px;
    width:auto;
    object-fit:contain;
    transition:.3s ease;
    filter:grayscale(100%);
    opacity:.8;
}

.brand-item:hover img{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

@keyframes brandScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* ==========================
DESKTOP
========================== */

@media (min-width:1024px){

    .brand-item{
        padding:0 50px;
    }

    .brand-item img{
        max-height:90px;
    }

}

/* ==========================
TABLET
========================== */

@media (min-width:768px) and (max-width:1023px){

    .brands-section{
        padding:80px 0;
    }

    .brands-track{
        animation-duration:28s;
    }

    .brand-item{
        padding:0 35px;
    }

    .brand-item img{
        max-height:65px;
    }

}

/* ==========================
MOBILE
========================== */

@media (max-width:767px){

    .brands-section{
        padding:70px 0;
    }

    .brands-divider{
        margin:25px 0 35px;
    }

    .brands-track{
        animation-duration:22s;
    }

    .brand-item{
        padding:0 20px;
    }

    .brand-item img{
        max-height:45px;
    }

}


/* =======================
FOOTER
======================= */

.footer-section{
    background:#0B6E3A;
    color:#fff;
    padding:80px 0 0;
}

.footer-logo{
    max-height:70px;
    margin-bottom:20px;
    filter:brightness(0) invert(1);
}

.footer-widget h4{
    margin-bottom:20px;
    font-size:20px;
    font-weight:700;
}

.footer-widget ul{
    list-style:none;
    padding:0;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget a{
    color:#fff;
    text-decoration:none;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.15);
    border-radius:50%;
}

.footer-services{
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:50px;
    padding-top:40px;
}

.service-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.service-tags span{
    background:rgba(255,255,255,.15);
    padding:8px 15px;
    border-radius:30px;
}

.footer-seo{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.2);
}

.footer-bottom{
    margin-top:50px;
    background:#08562D;
    padding:20px 0;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
}

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
}

#backToTop{
    position:fixed;
    right:20px;
    bottom:95px;
    width:50px;
    height:50px;
    border:none;
    background:#0B6E3A;
    color:#fff;
    border-radius:50%;
    display:none;
    z-index:999;
}

/* ====================================
RESPONSIVE FOOTER
==================================== */

/* Large Desktop */
@media (min-width: 1200px) {

    .footer-section {
        padding: 90px 0 0;
    }

    .footer-about {
        max-width: 95%;
    }

}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {

    .footer-section {
        padding: 70px 0 0;
    }

    .footer-widget {
        text-align: left;
    }

    .footer-widget h4 {
        font-size: 18px;
    }

    .footer-logo {
        max-height: 60px;
    }

    .footer-services h4 {
        text-align: center;
        margin-bottom: 20px;
    }

    .service-tags {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

}

/* Mobile */
@media (max-width: 767px) {

    .footer-section {
        padding: 50px 0 0;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-logo {
        max-height: 55px;
        margin: 0 auto 20px;
        display: block;
    }

    .footer-about {
        font-size: 14px;
        line-height: 1.8;
    }

    .footer-widget ul {
        margin-bottom: 0;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .footer-services {
        margin-top: 30px;
        padding-top: 25px;
        text-align: center;
    }

    .footer-services h4 {
        margin-bottom: 20px;
    }

    .service-tags {
        justify-content: center;
        gap: 8px;
    }

    .service-tags span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .footer-seo {
        text-align: center;
    }

    .footer-seo p {
        font-size: 14px;
        line-height: 1.8;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .footer-bottom-content p {
        margin: 0;
        font-size: 13px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
        font-size: 24px;
    }

    #backToTop {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 80px;
    }

}

/* Extra Small Mobile */
@media (max-width: 480px) {

    .footer-widget h4 {
        font-size: 17px;
    }

    .footer-about,
    .footer-seo p {
        font-size: 13px;
    }

    .service-tags span {
        font-size: 11px;
        padding: 6px 10px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

}