.footer {
    background-color: var(--dark-bg-color);
    color: var(--white-text-color);
    margin-top: 12rem;
    padding: 6rem 5.4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



.footer-logo {
    width: 24rem;
    margin-bottom: 1rem;
}

.footer-desc {
    font-family: poppins, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--light-text-color);
}

.footer-title {
    font-size: 2rem;
    color: var(--white-text-color);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--light-text-color);
    text-decoration: none;
    font-family: poppins, sans-serif;
    font-size: 1.6rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white-text-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: poppins, sans-serif;
    font-size: 1.6rem;
    color: var(--light-text-color);
    line-height: 1.6;
}

.footer-contact ion-icon {
    margin-top: 0.3rem;
    width: 30px;
    height: 24px;
}

/* Ensure consistent sizing for all icon types */
.footer-contact .ionicon,
.footer-contact .icon-inner,
.footer-contact svg {
    width: 24px !important;
    height: 24px !important;
}


.footer-contact a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--white-text-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5.4rem;
    background-color: var(--extra-dark-bg-color);
}

.copyright {
    font-family: poppins, sans-serif;
    font-size: 1.4rem;
    color: var(--light-text-color);
}

.powered-by {
    font-family: poppins, sans-serif;
    font-size: 1.4rem;
    color: #fff;
}

.Nocture {
    color: #957f75;
    text-decoration: none;
    transition: color 0.3s;
}

.nocture:hover {
    color: var(--hover-text-color);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 2rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-logo {
        width: 20rem;
    }
}
