/* ==================================================
   MODERN FOOTER (4-Column Layout)
================================================== */
.modern-footer {
    background: #18468f;
    color: #f1f1f1;
    padding: 60px 0 0;
    font-family: 'Poppins', 'Archivo', sans-serif;
    position: relative;
    border-top: 4px solid #f4a300;
}

.modern-footer a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modern-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Container */
.modern-footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================================================
   FOOTER TOP (4 COLUMNS)
================================================== */
.modern-footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .modern-footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modern-footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 60px;
    }
}

/* Footer Blocks */
.modern-footer-block {
    display: flex;
    flex-direction: column;
}

.modern-footer-block h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.modern-footer-block h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #f4a300;
}

/* Column 1: Brand & Info */
.modern-footer-brand {
    margin-bottom: 20px;
}

.modern-footer-brand img {
    max-width: 220px;
    height: auto;
}

.modern-footer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Social Icons */
.modern-footer-socials {
    display: flex;
    gap: 15px;
}

.modern-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modern-footer-socials a:hover {
    background: #f4a300;
    color: #18468f;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(244, 163, 0, 0.3);
}

/* Column 2 & 3: Links */
.modern-footer-links li {
    margin-bottom: 12px;
}

.modern-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}

.modern-footer-links a i {
    font-size: 12px;
    margin-right: 8px;
    color: #f4a300;
    transition: transform 0.3s ease;
}

.modern-footer-links a:hover {
    color: #f4a300;
    padding-left: 5px;
}

/* Column 4: Contact */
.modern-footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
}

.modern-footer-contact li i {
    color: #f4a300;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

.modern-footer-contact a:hover {
    color: #f4a300;
}

/* ==================================================
   FOOTER BOTTOM
================================================== */
.modern-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 20px;
}

.modern-footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

@media (min-width: 768px) {
    .modern-footer-bottom-content {
        flex-direction: row;
    }
}

.modern-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.modern-copyright b {
    color: #ffffff;
    font-weight: 500;
}

.modern-footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.modern-footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.3s ease;
}

.modern-footer-legal a:hover {
    color: #f4a300;
}
