/* Footer Styles */
.footer-section {
    background-color: #051c2c;
    color: #ffffff;
    padding: 60px 0 30px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Logo Section */
.footer-logo-section {
    max-width: 350px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.footer-description {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Social Media Icons */
.footer-social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #039BC1;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Footer Headings */
.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #039BC1;
    padding-left: 4px;
}

/* Contact Information */
.footer-contact-item {
    margin-bottom: 24px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-info {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    opacity: 0.8;
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    opacity: 1;
    color: #039BC1;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    width: 100%;
}

.footer-copyright {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-logo-section {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-section {
        padding: 50px 0 25px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-section {
        grid-column: 1;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-contact-info {
        font-size: 14px;
    }

    .footer-social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        gap: 24px;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer-contact-info {
        font-size: 13px;
    }

    .footer-contact-item {
        margin-bottom: 20px;
    }

    .footer-section {
        padding: 30px 0 20px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}
