/* ==========================================================================
   Footer Styles
   ========================================================================== */

   #footer-container .footer {
    background-color: #000000;
    color: #ffffff;
}

/* Footer Main */
#footer-container .footer-main {
    padding: 80px 0 40px;
}

#footer-container .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#footer-container .footer-logo {
    margin-bottom: 36px;
}

#footer-container .footer-logo-img {
    height: 56px;
    width: auto;
}

#footer-container .footer-content {
    display: grid;
    grid-template-columns: 1fr 1.6fr 0.6fr;
    gap: 60px;
    align-items: start;
}

/* footer section container (reserved for future hooks) */
#footer-container .footer-section { display: block; }

#footer-container .footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#footer-container .footer-title-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#footer-container .external-link img {
    width: 20px;
    height: 20px;
}

#footer-container .footer-phone {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

#footer-container .company-info {
    margin-bottom: 30px;
}

#footer-container .company-info p {
    font-size: 15px;
    color: #b7b7b7;
    line-height: 1.5;
    margin-bottom: 0px;
}

#footer-container .footer-links {
    margin-top: 16px;
}

#footer-container .footer-link {
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer-container .footer-link:hover {
    color: #ff7a0c;
}

#footer-container .divider {
    margin: 0 10px;
    color: #ffffff;
}

#footer-container .copyright p {
    font-size: 15px;
    color: #b7b7b7;
    line-height: 1.4;
}

#footer-container .social-links {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

#footer-container .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    transition: opacity 0.3s ease;
    border: none;
    padding: 0px;
    background-color:#000000;
}

#footer-container .social-link:hover {
    opacity: 0.7;
}

#footer-container .social-link img {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Desktop Large (1200px and up) */
@media (min-width: 1200px) {
    #footer-container .footer-container {
        padding: 0 40px;
    }
}

/* Desktop (1024px to 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    #footer-container .footer-container {
        max-width: 1024px;
        padding: 0 30px;
    }
}

/* Tablet (820px to 1023px) */
@media (max-width: 1023px) and (min-width: 820px) {
    
    #footer-container .footer-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 26px;
    }
    
    #footer-container .social {
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 20px;
    }
}

/* Mobile (280px to 819px) */
@media (max-width: 819px) {
    
    #footer-container .footer-main {
        padding: 60px 0 40px;
    }
    
    #footer-container .footer-logo-img {
        height: 44px;
    }
    #footer-container .footer-logo {
        margin-bottom: 2px;
    }
    
    #footer-container .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    #footer-container .footer-title {
        font-size: 16px;
    }
    
    #footer-container .footer-phone {
        font-size: 18px;
    }
    
    #footer-container .company-info p {
        font-size: 14px;
    }
    
    #footer-container .footer-link {
        font-size: 14px;
    }
    
    #footer-container .copyright p {
        font-size: 14px;
    }
    
    #footer-container .social-links {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

/* Small Mobile (280px to 480px) */
@media (max-width: 480px) {
    #footer-container .footer-main {
        padding: 48px 0 28px;
    }
    #footer-container .footer-logo {
        margin-bottom: 2px;
    }

    #footer-container .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        margin-bottom: 20px;
        transition: opacity 0.3s ease;
    }
}
