.category-menu {
    padding: 30px 30px;
    background: #fff;
}

.category-menu h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* CATEGORY CONTAINER */
.category-container {
    display: grid;
    grid-template-columns: repeat(9, auto); /* slider-like row for desktop */
    gap: 20px;
    justify-content: center;
}

/* CATEGORY ITEM */
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #e9e9e9;
    padding: 8px;
    transition: all 0.3s ease;
}

.category-item p {
    font-size: 13px;
    color: #222;
}

/* HOVER EFFECT */
.category-item:hover img {
    border-color: #6eb356;
    transform: scale(1.1);
}

/* DESKTOP / TABLET: horizontal scroll slider effect */
@media (min-width: 769px) {
    .category-container {
        display: flex;
        overflow-x: auto;
        gap: 30px;
        padding-bottom: 10px;
    }

    .category-container::-webkit-scrollbar {
        display: none;
    }
}

/* MOBILE GRID: 3x3 */
@media (max-width: 768px) {
    .category-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        gap: 10px;
    }
}

/* FOOTER */
.footer{
    background:#222222;
    color:#ccc;
    padding:40px;
}

/* GRID LAYOUT */
.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:30px;
}

/* FOOTER BRAND */
.footer-brand{
    display:block;
    margin-bottom:15px;
}

/* FOOTER LOGO IMAGE */
.footer-brand img{
    height:60px;          /* desktop logo size */
    width:auto;
    display:block;
    margin-bottom:8px;
}

/* TAGLINE */
.footer-brand .tagline{
    font-size:13px;
    color:#bdbdbd;
    letter-spacing:0.6px;
}

/* FOOTER LINKS (HIDDEN BY DEFAULT – DESKTOP) */
.footer-menu{
    display:block;
}

/* FOOTER LINKS */
.footer a{
    display:block;
    color:#ccc;
    margin-top:8px;
    text-decoration:none;
    transition:color 0.3s ease;
}

.footer a:hover{
    color:#6eb356;
}

/* SOCIAL ICONS */
.social i{
    font-size:22px;
    margin-right:15px;
    cursor:pointer;
    transition:color 0.3s ease, transform 0.3s ease;
}

.social i:hover{
    color:#ff4d6d;
    transform:scale(1.2);
}

/* COPYRIGHT */
.footer p{
    text-align:center;
    margin-top:30px;
    font-size:14px;
}


/* ✅ MOBILE VIEW */
@media (max-width:768px){

    /* Smaller footer logo */
    .footer-brand img{
        height:38px; 
        margin: 0 auto 10px;
    }

   .footer{
        padding:20px 16px;
    }
    
    .tagline{
        text-align: center !important;
    }

    /* Show footer menu on mobile only */
    .footer-menu{
        display:block;
    }

    /* Minimized by default */
    .footer-links{
        display:none;
    }

    /* Toggle title */
    .footer-toggle{
        font-size:15px;
        font-weight:700;
        color:#fff;
        cursor:pointer;
        margin-bottom:6px;
        position:relative;
    }

    /* + / − indicator */
    .footer-toggle::after{
        content:"+";
        position:absolute;
        right:0;
        font-size:18px;
    }

    /* Expanded state */
    .footer-menu.active .footer-links{
        display:block;
    }

    .footer-menu.active .footer-toggle::after{
        content:"−";
    }
}
@media (min-width: 992px){
    .footer-toggle{
        font-weight:800;
    }
}

@media (max-width:768px){
    .footer-toggle{
        font-size:15px;
        font-weight:700;
    }
}

/* Hide top filter on mobile */
@media (max-width: 767px) {
    .listing-top {
        display: none !important;
    }
}

/* Mobile footer filter button */
.mobile-filter-footer {
    display: none;
}

@media (max-width: 767px) {
    .mobile-filter-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        background: #ffffff;
        padding: 12px 16px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        justify-content: center;
    }
}

/* FOOTER BANNER */
.footer-banner {
    background: linear-gradient(90deg, #dcfeab, #6eb356);
    color: #080000;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 0px;
}

.footer-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-text h3 span {
    color: #ff4d6d;
}

.banner-text p {
    font-size: 16px;
    margin-bottom: 5px;
}

.banner-text .email a {
    color: #ff4d6d;
    text-decoration: none;
    font-weight: 600;
}

.banner-text .email a:hover {
    text-decoration: underline;
}
.banner-button .btn-contact {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #000;   /* white border */
    color: #000;              /* black text */
    text-decoration: none;
    border-radius: 50px;      /* round shape */
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.banner-button .btn-contact:hover {
    border-color: #fff;       /* white border */
    color: #fff;              /* white text */
}
