/* Modern Premium Footer Styles */
.new-footer-section {
    background-color: #f9fafb;
    padding: 4rem 0 3rem;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e5e7eb;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-wrapper {
    flex-shrink: 0;
}

.footer-logo {
    width: 140px;
    height: auto;
    display: block;
}

.footer-verticals {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-end;
    flex: 1;
}

.vertical-item {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vertical-item strong {
    font-weight: 900;
    color: #000;
}

.vertical-item:hover {
    color: #b4926d;
    transform: translateY(-1px);
}

.footer-content-wrapper {
    margin-top: 2rem;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company-name {
    font-size: 1.35rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.contact-text {
    color: #4b5563;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-text strong {
    font-weight: 600;
    color: #111827;
}

.contact-text:hover {
    color: #b4926d;
}

.contact-row i {
    color: #111827;
    font-size: 1.1rem;
    width: 20px;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 1rem;
}

.social-icons-container {
    display: flex;
    gap: 0.75rem;
}

.social-icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-circle:hover {
    background-color: #b4926d;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon-circle i {
    font-size: 1.1rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-verticals {
        justify-content: flex-start;
    }

    .col-lg-6.d-flex {
        align-items: flex-start !important;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .vertical-item {
        font-size: 0.7rem;
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 0.5rem;
    }

    .vertical-item:last-child {
        border-bottom: none;
    }

    .company-name {
        font-size: 1.25rem;
    }
}