/* Sticky footer styles */

.footer {
    background-color: rgb(248, 249, 250);
    padding: 40px 0 0;
    color: #333;
    margin-top: 3rem;
    border-top: 1px solid #eee;
}

.footer__container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 0.6rem;
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
}

.footer__column {
    flex: 1;
    min-width: 160px;
    width: fit-content;
    flex-direction: column;
    text-align: start;
    align-items: start;
    justify-content: start;
}

/* Brand column specific styles */


.footer__logo {
    margin-bottom: 10px;
    padding: 15px;
    padding-left: 0px;
    text-decoration: none;
}

.logo__text {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer__description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.footer__heading {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 3px;
    width: 100%;
    text-align: left;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: fit-content;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    opacity: 0.8;
}

/* Contact section styles */
.footer_item {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 15px;
}

.footer__contact-icon {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.footer__contact-text {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    margin: 0;
}

.footer__contact-text:hover {
    opacity: 0.8;
}

.footer__copyright-wrapper {
    background-color: rgb(248, 249, 250);
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #eee;
}

.footer__copyright {
    text-align: center;
    color: #666;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 0.8rem !important;
}

/* Back to top button */
.footer__back-to-top {
    background-color: #f8f9fa;
    color: #666;
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.footer__back-to-top:hover {
    background-color: #f7f7f7;
}

/* Responsive Design */
@media (max-width: 992px) {

    .footer__column:first-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0;
        border-bottom: 1px solid #eee;
    
    }
    
    .footer__column:not(:first-child) {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 0;
    }

    .footer__column:not(:first-child) {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .footer__column:not(:first-child) {
        flex: 0 0 calc(50% - 20px);
    }
}
