/* ========================================
   FOOTER STYLES - INTERIOR DESIGN THEME
   ======================================== */

/* Main Footer */
.footer-main {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e5c3 50%, #d4af37 100%);
}

/* Footer Logo */
.footer-logo {
    max-height: 70px;
    margin-bottom: 25px;
    filter: brightness(1.1);
}

/* Footer Section Headings */
.footer-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #d4af37;
}

.footer-heading.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Footer Description */
.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 25px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #d4af37;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d4af37;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact-text {
    flex: 1;
    padding-top: 8px;
}

.footer-contact-text span {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-text a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: #d4af37;
}

/* Footer Bottom */
.footer-bottom {
    background: #0f0f0f;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-copyright {
    color: #808080;
    font-size: 13px;
    margin: 0;
}

.footer-copyright a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #f4e5c3;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.float-whatsapp i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Floating Get Estimate Button */
.float-estimate {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    /* Positioned above WhatsApp button */
    right: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.float-estimate:hover {
    background: linear-gradient(135deg, #f4e5c3 0%, #d4af37 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.float-estimate i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Estimate Modal Styling */
#estimateModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#estimateModal .modal-header {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    color: #1a1a1a;
    border-radius: 15px 15px 0 0;
    padding: 20px 25px;
    border-bottom: none;
}

#estimateModal .modal-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

#estimateModal .btn-close {
    filter: brightness(0);
    opacity: 0.7;
}

#estimateModal .btn-close:hover {
    opacity: 1;
}

#estimateModal .modal-body {
    padding: 30px 25px;
}

#estimateModal .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

#estimateModal .form-control,
#estimateModal .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#estimateModal .form-control:focus,
#estimateModal .form-select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

#estimateModal .btn-estimate-submit {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 100%);
    border: none;
    color: #1a1a1a;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#estimateModal .btn-estimate-submit:hover {
    background: linear-gradient(135deg, #f4e5c3 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

#estimateModal .text-danger {
    color: #dc3545;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 0;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-logo {
        max-height: 50px;
        margin-bottom: 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact li {
        margin-bottom: 15px;
    }

    .footer-contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-contact-text span {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 0;
        margin-top: 40px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .float-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    .float-estimate {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 20px;
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 0;
    }

    .footer-heading {
        font-size: 15px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-description {
        text-align: center;
        font-size: 13px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-copyright {
        text-align: center !important;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}