.mf-wrapper {
    background-color: #21204c;
    color: #cbd5e1;
    font-family: sans-serif;
    padding: 60px 20px 20px;
}

.mf-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

@media (max-width: 992px) {
    .mf-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mf-container {
        grid-template-columns: 1fr;
    }
}

.mf-col-1 {
    padding-right: 20px;
}

.mf-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.mf-company-name {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.mf-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.mf-socials {
    display: flex;
    gap: 12px;
}

.mf-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mf-social-icon:hover {
    background-color: #ef4444;
    color: #fff;
}

.mf-social-icon i {
    font-size: 16px;
}

.mf-social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.mf-heading {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    position: relative;
    padding-bottom: 10px;
}

.mf-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ef4444;
    border-radius: 2px;
}

.mf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mf-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.mf-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
}

.mf-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.mf-list a:hover {
    color: #ef4444;
}

.mf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mf-contact-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.mf-contact-list span {
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.mf-location-item {
    margin-bottom: 20px !important;
}

.mf-location-label {
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.mf-location-details {
    color: #cbd5e1;
    line-height: 1.6;
}

.mf-newsletter {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 4px;
    margin-top: 20px;
}

.mf-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}

.mf-newsletter input::placeholder {
    color: #94a3b8;
}

.mf-newsletter button {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.mf-newsletter button:hover {
    background: #dc2626;
}

/* Bottom Bar Updates */
.mf-bottom-bar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mf-bottom-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    max-width: 800px;
    margin-bottom: 15px;
}

.mf-bottom-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mf-bottom-logo {
    max-width: 30px;
    height: auto;
}

.mf-bottom-company-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.mf-bottom-dot {
    color: #64748b;
    font-size: 1.2rem;
    margin: 0 5px;
}

.mf-bottom-slider-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 20px;
    flex: 1;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.mf-email-slider {
    width: 100%;
    height: 100%;
}

.mf-email-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    height: 100%;
}

.mf-mail-icon {
    color: #3b82f6;
    margin-right: 10px;
}

.mf-bottom-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94a3b8;
    padding-top: 15px;
}

@media (max-width: 600px) {
    .mf-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .mf-bottom-slider-container {
        width: 100%;
        margin-top: 10px;
    }
    .mf-bottom-dot {
        display: none;
    }
    .mf-bottom-copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
