/* Coming Footer Styles */
.footer {
    background-color: #00263E;
    width: 100%;
}

/* Footer Top Bar */
.footer-top-bar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo a {
    display: block;
}

.footer-logo svg {
    width: 100px;
    height: auto;
}

.footer-social-links {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255);
    border-radius: 50%;
    color: #FFF;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Main Section */
.footer-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 100px 50px;
    gap: 20px;
    margin: 0 auto;
}

.footer-bottom-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin: 0 auto;
}

/* Contact Section */
.footer-contact {
    width: 580px;
    flex-shrink: 0;
}

.footer-contact-title {
    margin: 0 0 32px 0;
}

.footer-contact-link {
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-contact-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFF;
    transition: width 0.3s ease;
}

.footer-contact-arrow {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer-contact-link:hover {
    color: #FFF;
}

.footer-contact-link:hover::after {
    width: 100%;
}

.footer-contact-link:hover .footer-contact-arrow {
    stroke: #FFF;
    transition: stroke 0.3s ease;
}

.footer-contact-link:active {
    color: #FFF;
}

.footer-contact-link:active::after {
    width: 100%;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    white-space: nowrap;
}

.footer-contact-icon {
    color: rgba(244, 244, 244, 0.6);
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.60);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.footer-contact-phones {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Divider */
.footer-divider {
    width: 1px;
    background-color: rgba(244, 244, 244, 0.15);
    align-self: stretch;
    min-height: 240px;
    margin: 0 40px;
}

/* Links Section */
.footer-links {
    display: flex;
    gap: 120px;
    flex: 1;
    justify-content: flex-start;
    padding-left: 20px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
}

.footer-links-title {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #F4F4F4;
    margin: 0 0 20px 0;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(244, 244, 244, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #BE930B;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 100px;
    border-top: 1px solid rgba(244, 244, 244, 0.1);
    margin: 0 auto;
}

.footer-bottom .footer-left {
    display: flex;
    align-items: center;
}

.footer-bottom .footer-left .footer-left-text {
    color: rgba(255, 255, 255, 0.50);
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.footer-bottom .footer-left .footer-brand {
    color: #FFF;
}

.footer-bottom .footer-right {
    display: flex;
    align-items: center;
}

.footer-bottom .footer-right .footer-right-text {
    color: #F4F4F4;
    text-align: right;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .footer-main {
        padding: 60px 60px;
        gap: 60px;
    }

    .footer-links {
        gap: 80px;
    }

    .footer-bottom {
        padding: 24px 60px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        padding: 40px 24px;
        gap: 40px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-contact {
        width: 100%;
    }

    .footer-contact-link {
        font-size: 24px;
    }

    .footer-contact-text {
        font-size: 14px;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
        min-height: auto;
        margin: 0;
    }

    .footer-links {
        flex-direction: row;
        gap: 60px;
        padding-left: 0;
        width: 100%;
    }

    .footer-links-column {
        min-width: 140px;
        max-width: none;
        flex: none;
    }

    .footer-links-title {
        font-size: 16px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 24px 24px;
        text-align: center;
        align-items: flex-start;
        border-top: 1px solid rgba(244, 244, 244, 0.1);
    }

    .footer-bottom .footer-left {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-bottom .footer-left .footer-left-text {
        font-size: 14px;
        text-align: left;
        margin: 0;
    }

    .footer-bottom .footer-right {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-bottom .footer-right .footer-right-text {
        font-size: 14px;
        text-align: left;
        margin: 0;
    }
}
