.footer-section,
.credits-section {
    display: flex;
    justify-content: center;
    position: relative;
    background-color: var(--color-black);
    color: var(--color-footer-text);
    padding: 0 var(--side-padding);
}

.footer-container,
.credits-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    border-bottom: 2px solid var(--color-footer-line);
    width: 100%;
    padding: 2.5rem 0 var(--p-xl) 0;
}


.credits-container {
    padding: 1rem 0;
    font-size: var(--default-secondary-font-size);
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-footer-text);
    margin-bottom: 0.5rem;
}

/* Brand Section */
.footer-brand-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}


.footer-brand-description {
    color: var(--color-footer-text);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Quick Links */
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-list a {
    color: var(--color-footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--color-primary);
}

/* Contact Section */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    color: var(--color-primary); /* Orange color */
    width: 16px;
    font-size: 0.9rem;
}


/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-footer-text);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition-all);
}

.social-icon:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white !important;
}

.social-icon i {
    font-size: 1rem;
}

/* Legacy styles for credits section */
.credits-container .footer-item:first-child {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.footer-container {
    padding: 2.5rem 0;
}

.footer-item {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.footer-item:first-child {
    gap: 2rem;
}

.footer-item:nth-child(2) {
    gap: 1.5rem;
}

.footer-item a {
    color: var(--color-footer-text);
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
}

.footer-links div {
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links div:hover {
    color: var(--color-primary);
}


/*--------------------------------------------------------------
# Responsive Footer - Tablet View (≥ 768px)
--------------------------------------------------------------*/
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .credits-container {
        flex-direction: row;
    }

    .credits-container .footer-item:first-child {
        flex-direction: row;
        align-items: start;
        gap: 2rem;
        padding: 1.5rem 0;
    }
}

/*--------------------------------------------------------------
# Responsive Footer - Large Desktop View (≥ 1200px)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
        padding: 3.5rem 0;
    }

    .credits-container {
        gap: unset;
    }
}

