/* Professional Footer Styles for matrasparsh */
:root {
    --footer-bg: #e85e37;
    --footer-accent: #ffffff;
    --footer-text: #ffffff;
    --footer-title: #ffffff;
    --footer-hover: #e0f2f1;
    --footer-border: rgba(255, 255, 255, 0.2);
}

.professional-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 0 0;
    font-family: 'Urbanist', sans-serif;
    position: relative;
    overflow: hidden;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--footer-border);
}

.footer-logo-col .footer-logo {
    max-height: 80px;
    margin-bottom: 25px;
    border-radius: 10px;
    /* added for better appearance if it's a jpeg */
}

.footer-logo-col p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--footer-text);
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid var(--footer-border);
}

.footer-social-links a:hover {
    background: #fff;
    color: var(--footer-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-title {
    color: var(--footer-title);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--footer-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}

.footer-links li a i {
    font-size: 14px;
    margin-right: 10px;
    color: var(--footer-accent);
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--footer-hover);
    padding-left: 8px;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-item i {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.footer-contact-item div span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
}

.footer-contact-item div p,
.footer-contact-item div a {
    font-size: 15px;
    color: var(--footer-title);
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item div a:hover {
    color: var(--footer-accent);
}

.footer-map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    border: 1px solid var(--footer-border);
    margin-top: 20px;
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.copyright-text {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--footer-accent);
}

@media (max-width: 991px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright-text {
        text-align: center;
    }

    .footer-logo-col {
        margin-bottom: 40px;
    }

    .footer-title {
        margin-top: 20px;
    }
}