.elementor-136 .elementor-element.elementor-element-fe502d2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-d3a9cd0 *//* Footer Section CSS */

.company-footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.company-footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #0052a3, #004080);
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-info-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.3);
    padding-bottom: 10px;
}

.footer-address-text,
.footer-phone-text,
.footer-hours-text {
    line-height: 1.8;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-address-text strong,
.footer-phone-text strong,
.footer-hours-text strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links-list li {
    margin-bottom: 0;
}

.footer-nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

.footer-nav-link:hover {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.1);
    transform: translateX(5px);
}

.social-media-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-icons-container {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.social-media-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.2);
    border: 2px solid rgba(0, 102, 204, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media-link:hover {
    background: #0066cc;
    border-color: #0066cc;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.footer-bottom-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright-text {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Tablet Design */
@media (max-width: 1024px) {
    .company-footer-section {
        padding: 50px 0 25px;
    }
    
    .footer-content-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .footer-info-block {
        padding: 25px 20px;
    }
    
    .footer-block-title {
        font-size: 1.2rem;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .company-footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-main-container {
        padding: 0 15px;
    }
    
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-bottom-row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 20px 25px;
    }
    
    .footer-info-block {
        padding: 20px 18px;
        text-align: center;
    }
    
    .footer-block-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-address-text,
    .footer-phone-text,
    .footer-hours-text,
    .footer-nav-link {
        font-size: 0.9rem;
    }
    
    .footer-links-list {
        justify-content: center;
        gap: 15px;
    }
    
    .social-media-section {
        justify-content: center;
    }
    
    .social-icons-container {
        gap: 12px;
    }
    
    .social-media-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-bottom-section {
        padding-top: 25px;
    }
    
    .footer-copyright-text {
        font-size: 0.85rem;
    }
}

/* Small Mobile Design */
@media (max-width: 480px) {
    .company-footer-section {
        padding: 35px 0 18px;
    }
    
    .footer-main-container {
        padding: 0 12px;
    }
    
    .footer-bottom-row {
        padding: 18px 20px;
    }
    
    .footer-info-block {
        padding: 18px 15px;
    }
    
    .footer-block-title {
        font-size: 1rem;
    }
    
    .footer-address-text,
    .footer-phone-text,
    .footer-hours-text,
    .footer-nav-link {
        font-size: 0.85rem;
    }
    
    .footer-links-list {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons-container {
        gap: 10px;
    }
    
    .social-media-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}/* End custom CSS */