/* =============================================
   ACCMINT FOOTER STYLES
   Compatible with Laravel + Tailwind or plain CSS
   ============================================= */

/* --- Variables --- */
:root {
    --footer-bg: #0d0d0d;
    --footer-bottom-bg: #080808;
    --footer-text: #9ca3af;
    --footer-heading: #ffffff;
    --footer-link: #9ca3af;
    --footer-link-hover: #ef4444;
    --footer-border: rgba(255, 255, 255, 0.07);
    --accent: #ef4444;
    --accent-dark: #b91c1c;
    --radius: 8px;
    --font-main: 'Inter', 'Segoe UI', sans-serif;
}

/* --- Footer Base --- */
.accmint-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-family: var(--font-main);
    border-top: 1px solid var(--footer-border);
}

.accmint-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Main Footer Grid --- */
.footer-main {
    padding: 56px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1.2fr;
    gap: 48px;
}

/* --- Brand Column --- */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.logo-text strong {
    font-weight: 700;
    color: var(--accent);
}

.footer-tagline {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--footer-text);
    max-width: 260px;
    margin: 0;
}

/* --- Social Icons --- */
.footer-social {
    margin-top: 8px;
}

.social-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.07);
    color: #9ca3af;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    background-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Footer Columns --- */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--footer-heading);
    letter-spacing: 0.2px;
    margin: 0 0 4px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--footer-border);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 13.5px;
    color: var(--footer-link);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--footer-link-hover);
    padding-left: 4px;
}

/* --- 24/7 Badge --- */
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #6b7280;
    border: 1px solid var(--footer-border);
    border-radius: 20px;
    padding: 6px 12px;
    margin-top: 8px;
    width: fit-content;
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
    background-color: var(--footer-bottom-bg);
    border-top: 1px solid var(--footer-border);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: #4b5563;
    margin: 0;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-payment-icons img {
    height: 22px;
    width: auto;
    opacity: 0.65;
    filter: grayscale(30%);
    transition: opacity 0.2s ease;
}

.footer-payment-icons img:hover {
    opacity: 1;
    filter: none;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-main {
        padding: 40px 0 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-tagline {
        max-width: 100%;
    }
}
