/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 4rem;
    padding-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.footer-logo-main {
    font-weight: 700;
    font-size: 1.4rem;
}

.footer-logo-sub {
    font-weight: 700;
    font-size: 1.4rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-item a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact-item i {
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
}

/* Ensure container is used correctly */
footer .container {
    position: relative;
}