footer {
    position: relative;
    background: #111;
    /* Light black */
    color: #fff;
    padding: 5rem 0 0;
    /* padding-bottom handled by bottom-wrap */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: flex-start;
}

.footer-official-logo {
    height: 65px;
    /* Independent size from navbar */
    width: auto;
    display: block;
    object-fit: contain;
    margin-left: -10px;
    /* Shifted slightly left as requested */
    transition: opacity 0.3s ease;
}

.footer-official-logo:hover {
    opacity: 0.8;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 1rem;
}

.footer-list a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #fff;
}

.footer-bottom-wrap {
    background: #000;
    /* Bottom extreme black */
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-social-link:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.1);
}

/* Brand Colors */
.footer-social-link .fa-facebook-f {
    color: #1877F2;
}

.footer-social-link .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-social-link .fa-tiktok {
    color: #fff;
}

.payment-methods {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.2s ease;
    cursor: help;
}

/* Payment Brand Colors */
.payment-icon .fa-cc-visa {
    color: #1A1F71;
}

.payment-icon .fa-cc-mastercard {
    color: #EB001B;
}

.payment-icon .fa-apple-pay {
    color: #fff;
}

/* Kept white for visibility on black footer */
.payment-icon .fa-google-pay {
    color: #4285F4;
}

.payment-icon .fa-cc-amex {
    color: #007BC1;
}

.payment-icon:hover {
    transform: scale(1.15);
}

.copyright {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* ============================================================
   GLOBAL BENEFITS BAR STYLING
   ============================================================ */
.benefits-section {
    padding: 4rem 0 6rem;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .newsletter-benefits {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
}

@media (min-width: 768px) {
    .benefit-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.25rem;
    }
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background-color: #f0f7f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .benefit-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

.benefit-icon .material-symbols-outlined {
    font-size: 26px;
    color: #6aa84f;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.benefit-content {
    display: flex;
    flex-direction: column;
}

.benefit-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #13131D;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.benefit-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(19, 19, 29, 0.55);
    line-height: 1.4;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.minietech-whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    color: #25d366;
    padding: 10px 20px 10px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.15);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

/* Position settings */
.minietech-whatsapp-float.bottom-right {
    right: 2rem;
}

.minietech-whatsapp-float.bottom-left {
    left: 2rem;
}

/* Icon wrap */
.minietech-whatsapp-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #25d366;
}

.minietech-whatsapp-icon-wrap svg {
    width: auto;
    height: 20px;
    display: block;
}

/* WhatsApp Brand Text */
.minietech-whatsapp-text {
    color: #25d366;
    letter-spacing: -0.01em;
}

/* Hover effects */
.minietech-whatsapp-float:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 4px 8px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    color: #128c7e;
    border-color: rgba(18, 140, 126, 0.3);
}

.minietech-whatsapp-float:hover .minietech-whatsapp-icon-wrap,
.minietech-whatsapp-float:hover .minietech-whatsapp-text {
    color: #128c7e;
}

/* Active/click state */
.minietech-whatsapp-float:active {
    transform: translateY(-1px) scale(0.98);
}

/* Circular Style override */
.minietech-whatsapp-float.style-circular {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    background-color: #22c35e; /* Bright WhatsApp green matching screenshot */
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.minietech-whatsapp-float.style-circular .minietech-whatsapp-icon-wrap {
    color: #ffffff;
    width: 32px;
    height: 32px;
}

.minietech-whatsapp-float.style-circular .minietech-whatsapp-icon-wrap svg {
    width: auto;
    height: 32px;
    display: block;
}

.minietech-whatsapp-float.style-circular:hover {
    background-color: #128c7e;
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
}

.minietech-whatsapp-float.style-circular:hover .minietech-whatsapp-icon-wrap {
    color: #ffffff;
}

.minietech-whatsapp-float.style-circular .minietech-whatsapp-badge {
    top: 3px;
    right: 3px;
    width: 10px;
    height: 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Pulsating notification dot */
.minietech-whatsapp-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 9px;
    height: 9px;
    background-color: #ff0000;
    border-radius: 50px;
    box-shadow: 0 0 0 2px #ffffff;
}

/* Pulse animation */
.minietech-whatsapp-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: #ff0000;
    opacity: 0.6;
    animation: mt-whatsapp-pulse 1.8s infinite ease-in-out;
}

@keyframes mt-whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

/* Mobile responsive adjustments: size and position reduction */
@media (max-width: 1023px) {
    .minietech-whatsapp-float {
        bottom: 4.0rem;
        /* Positioned close to bottom by default */
        right: 1.5rem;
        left: auto;
        padding: 8px 16px 8px 12px;
        /* Reduced vertical and horizontal padding (smaller height) */
        font-size: 13.5px;
        /* Sized down slightly */
        gap: 6px;
    }

    .minietech-whatsapp-float.bottom-left {
        left: 1.5rem;
        right: auto;
    }

    .minietech-whatsapp-float .minietech-whatsapp-icon-wrap {
        width: 20px;
        height: 20px;
    }

    .minietech-whatsapp-float .minietech-whatsapp-icon-wrap svg {
        width: 18px;
        height: 18px;
    }

    /* Dynamically shift the button up ONLY if the mobile sticky buy bar is active */
    .sticky-buy-bar.is-visible~.minietech-whatsapp-float {
        bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
    }
}