/* Thermonic Website - Footer CSS Styles
   This stylesheet contains styles for the website footer
*/

/* Main Footer */
#thermonic_main_footer {
    opacity: 0.9;
    color: #f1faee;
    padding: 0;
}

/* Footer Top */
.footer-top {
    padding: 66px 0 0px;
}

/* Footer Widgets */
.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3c5f8e;
}

.footer-widget p {
    color: #f1faee;
    margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #3c5f8e;
    color: #fff;
}

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

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

.footer-links li a {
    color: #f1faee;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links li a:before {
    content: '\f105';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 0;
    color: #3c5f8e;
}

.footer-links li a:hover {
    color: #3c5f8e;
    padding-left: 20px;
}

/* Contact Info */
.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.contact-info p i {
    color: #3c5f8e;
    margin-right: 10px;
    font-size: 18px;
    margin-top: 5px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.copyright {
    color: #f1faee;
    margin: 0;
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-widget h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 25px;
    }
    
    .footer-widget h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575.98px) {
    .footer-top {
        padding: 30px 0 10px;
    }
    
    .footer-widget h4 {
        font-size: 15px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

#thermonic_main_footer .footer-inquiry input,
#thermonic_main_footer .footer-inquiry textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}
#thermonic_main_footer .footer-inquiry input::placeholder,
#thermonic_main_footer .footer-inquiry textarea::placeholder {
    color: #ccc;
}


.footer-logo-row {
    text-align: center;
}

.footer-logo-row .logo-img {
    height: 80px;
    max-width: 75%;
    margin: 0 auto;
    display: inline-block;
}


