/* ============================================
   FOOTER SECTION
   ============================================ */

/* Desktop Footer */
.deluxe-construction-footer {
    background-color: #1a1a1a; /* Footer background - grey derived from black button */
    color: #e0e0e0; /* Footer text color */
    padding: 60px 0 0;
}

.deluxe-construction-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

/* Footer About Section */
.deluxe-construction-footer-about {
    max-width: 400px;
}

.deluxe-construction-footer-brand {
    font-size: 28px;
    font-weight: 800;
    color: #d2b08b; /* Brand name color - gold */
    margin-bottom: 20px;
}

.deluxe-construction-footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0; /* About text color */
}

/* Footer Links Section */
.deluxe-construction-footer-links {
}

.deluxe-construction-footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff; /* Heading color */
    margin-bottom: 20px;
}

.deluxe-construction-footer-menu {
    list-style: none;
}

.deluxe-construction-footer-menu-item {
    margin-bottom: 12px;
}

.deluxe-construction-footer-menu-link {
    color: #b0b0b0; /* Menu link color */
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.deluxe-construction-footer-menu-link:hover {
    color: #d2b08b; /* Menu link hover color - gold */
    padding-left: 5px;
}

.deluxe-construction-footer-menu-link i {
    font-size: 10px;
}

/* Footer Contact Section */
.deluxe-construction-footer-contact {
}

.deluxe-construction-footer-contact-list {
    list-style: none;
}

.deluxe-construction-footer-contact-item {
    margin-bottom: 15px;
}

.deluxe-construction-footer-contact-link {
    color: #b0b0b0; /* Contact link color */
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.deluxe-construction-footer-contact-link:hover {
    color: #d2b08b; /* Contact link hover color - gold */
}

.deluxe-construction-footer-contact-link i {
    font-size: 16px;
}

/* Footer Bottom */
.deluxe-construction-footer-bottom {
    border-top: 1px solid #333333;
    padding: 25px 40px;
    text-align: center;
}

.deluxe-construction-footer-copyright {
    font-size: 14px;
    color: #808080; /* Copyright text color */
    margin: 0;
}

/* Tablet Footer */
@media (max-width: 768px) {
    .deluxe-construction-footer {
        padding: 50px 0 0;
    }
    
    .deluxe-construction-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px 30px;
    }
    
    .deluxe-construction-footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .deluxe-construction-footer-brand {
        font-size: 24px;
    }
    
    .deluxe-construction-footer-bottom {
        padding: 20px 30px;
    }
}

/* Mobile Footer */
@media (max-width: 480px) {
    .deluxe-construction-footer {
        padding: 40px 0 0;
    }
    
    .deluxe-construction-footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 25px 30px;
        text-align: center;
    }
    
    .deluxe-construction-footer-about {
        grid-column: 1;
    }
    
    .deluxe-construction-footer-brand {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .deluxe-construction-footer-text {
        font-size: 14px;
    }
    
    .deluxe-construction-footer-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .deluxe-construction-footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .deluxe-construction-footer-menu-link {
        justify-content: center;
        font-size: 14px;
    }
    
    .deluxe-construction-footer-menu-link:hover {
        padding-left: 0;
    }
    
    .deluxe-construction-footer-contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .deluxe-construction-footer-contact-link {
        justify-content: center;
        font-size: 14px;
    }
    
    .deluxe-construction-footer-bottom {
        padding: 20px 25px;
    }
    
    .deluxe-construction-footer-copyright {
        font-size: 13px;
    }
}