﻿/* ================= MAIN FOOTER ================= */

.main-footer {
    background: linear-gradient(135deg, #0c1f2a, #123447);
    color: #ffffff;
    padding-top: 60px;
}

/* GRID LAYOUT */

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 25px 50px 25px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* ================= BRAND ================= */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 90px;
    height: auto;
}

.footer-company-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-company-text h3 {
    font-size: 17px;
    font-weight: 500;
    color: #d6d6d6;
}

/* ================= COLUMN ================= */

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
}

    .footer-column h4::after {
        content: "";
        width: 40px;
        height: 2px;
        background: #28a745;
        display: block;
        margin-top: 8px;
    }

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            color: #dcdcdc;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s ease;
        }

            .footer-column ul li a:hover {
                color: #28a745;
                padding-left: 5px;
            }

/* ================= ADDRESS ================= */

.footer-column p {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact {
    font-size: 14px;
}

/* BUTTON */

.direction-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    transition: 0.3s ease;
}

    .direction-btn:hover {
        background: #1e7e34;
    }

/* ================= BOTTOM ================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    text-align: center;
    font-size: 13px;
    background: rgba(0,0,0,0.25);
}

    .footer-bottom a {
        color: #28a745;
        text-decoration: none;
        font-weight: 600;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }
}
