.site-footer {
    background-color: #000;
    color: #fff;
    margin-top: 2rem;
}

/* ---------- Main Footer ---------- */
.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr) 1.3fr;
    gap: 2.5rem;
    padding: 3rem 0 2rem;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    color: #fff;
}

.footer-logo .logo-sub {
    color: #ff0000;
}

/* About */
.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Headings */
.footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Links */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li + li {
    margin-top: 0.4rem;
}

.footer-column ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-column ul a:hover {
    color: #1da1f2;
}

/* Contact */
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    background-color: #ff0000;
    transform: translateY(-2px);
}

/* ---------- Footer Bottom ---------- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.9rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.dev-credit strong {
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
}
.footer-column.footer-warranty {
    max-width: 280px;
}

.footer-column.footer-warranty .warranty-logo {
    margin-bottom: 0.75rem;
}

.footer-column.footer-warranty .warranty-logo img {
    width: 50px; /* adjust size as needed */
    height: auto;
    display: block;
}

.footer-column.footer-warranty h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #fff;
}

.footer-column.footer-warranty p {
    font-size: 0.875rem;
    color: #ddd;
    margin-bottom: 0.5rem;
}

.footer-column.footer-warranty .footer-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (max-width: 900px) {
    .footer-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
