/* =========================================
   HONEYSHILA FOOTER BASE STYLING
========================================= */

:root {
    --primary-green: #026817;
    --primary-green-hover: #014e11;
    --accent-yellow: #F2C744;
    --text-dark: #2b2b2b;
}

.hs-footer {
    background-color: #efedea !important;
    font-family: 'Archivo', sans-serif !important;
    color: var(--text-dark) !important;
}

/* =========================================
   BRAND & LOGO STYLING
========================================= */

.footer-brand-badge {
    background-color: transparent !important;
    padding: 0 !important;
    display: inline-block;
    border-radius: 4px;
    line-height: 0;
}

.footer-logo {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================================
   FOOTER HEADINGS & LINKS
========================================= */

.footer-title {
    font-family: 'Archivo', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
    margin-bottom: 1rem;
}

.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #666666 !important;
    text-decoration: none !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.footer-menu a:hover {
    color: var(--primary-green) !important;
}

/* =========================================
   SOCIAL MEDIA BUTTONS
========================================= */

.social-circle-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.social-circle-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* =========================================
   NEWSLETTER INPUT & BUTTON
========================================= */

.newsletter-wrapper .form-control {
    background-color: #ffffff !important;
    border: 1px solid #e2ddd5 !important;
    padding: 10px 18px;
    font-size: 0.85rem;
    color: var(--text-dark);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.newsletter-wrapper .form-control:focus {
    border-color: var(--primary-green) !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(2, 104, 23, 0.1);
}

.btn-newsletter-submit {
    background-color: var(--primary-green) !important;
    color: #ffffff !important;
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease-in-out;
}

.btn-newsletter-submit:hover {
    background-color: var(--primary-green-hover) !important;
}

/* =========================================
   TABLET RESPONSIVE (768px - 991px)
========================================= */

@media (max-width: 991px) {
    .hs-footer {
        padding: 40px 24px !important;
    }
    .footer-title {
        font-size: 0.9rem !important;
        margin-bottom: 0.8rem;
    }
    .footer-menu a {
        font-size: 0.85rem;
    }
    .footer-logo {
        width: 165px;
    }
    .newsletter-wrapper .form-control {
        font-size: 0.85rem;
        padding: 9px 14px;
    }
}

/* =========================================
   MOBILE RESPONSIVE (Up to 767px) - SINGLE COLUMN
========================================= */

@media (max-width: 767px) {
    .hs-footer {
        padding: 35px 20px !important;
        text-align: center;
    }
	span.badge-text-main {
    margin-top: -4px;
}
	    .footer-title {
			text-align:start;	
	}
	.footer-title-paragrah{
text-align:start;
	}

    .hs-footer .row {
        display: block;
    }

    /* Force all columns to single full-width column */
    .hs-footer .row > [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 25px;
        text-align: center;
    }

    .hs-footer .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }

    /* Center Logo */
    .footer-brand-badge,
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        width: 155px;
    }

    /* Center Social Media Icons */
    .hs-footer .d-flex.align-items-center.gap-2 {
        justify-content: center;
    }
.footer-menu {
	text-align:start;
	}
    .social-circle-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    /* Center Newsletter Box */
    .newsletter-wrapper {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   SMALL MOBILE (Up to 480px)
========================================= */

@media (max-width: 480px) {
    .hs-footer {
        padding: 30px 15px !important;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-title {
        font-size: 0.88rem !important;
    }

    .footer-menu a {
        font-size: 0.82rem;
    }

    .social-circle-btn {
        width: 34px;
        height: 34px;
    }

    .newsletter-wrapper .form-control {
        font-size: 0.82rem;
        padding: 9px 12px;
    }
}