.elementor-14 .elementor-element.elementor-element-6e1ab7d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-294f437 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Override any container/wrapper constraints */
.footer-wrapper,
.container,
.main-wrapper {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}



/* Footer Main Container */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 50px 0 25px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    z-index: 10;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Content Layout */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

/* Company Info Section */
.company-info {
    max-width: 600px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.company-description {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
}

.company-description strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Contact Info Section */
.contact-info {
    min-width: 280px;
}

.contact-info h3 {
    color: #ff6b35;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 8px;
    display: inline-block;
}

.contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-label {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.whatsapp-link {
    position: relative;
}

.whatsapp-link::before {
    content: '💬';
    margin-right: 8px;
    font-size: 14px;
}

/* Social Media Section */
.social-section {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.social-section h4 {
    color: #ff6b35;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-radius: 12px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #444;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.social-icon svg {
    position: relative;
    z-index: 1;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .company-info {
        max-width: 100%;
        order: 1;
    }

    .contact-info {
        order: 2;
        min-width: auto;
    }

    .footer-logo {
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .footer-logo img {
        height: 40px;
    }

    .company-description {
        font-size: 14px;
        text-align: left;
        margin-bottom: 16px;
    }

    .contact-info h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 15px;
        padding: 10px 0;
    }

    .contact-link {
        font-size: 15px;
    }

    .social-section {
        margin-top: 25px;
        padding-top: 20px;
    }

    .social-icons {
        justify-content: flex-start;
        gap: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 35px 0 18px 0;
    }

    .footer-container {
        padding: 0 12px;
    }

    .footer-content {
        gap: 35px;
    }

    .company-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-info h3 {
        font-size: 16px;
    }

    .contact-link {
        font-size: 14px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 14px;
        height: 14px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* High-resolution displays */
@media screen and (-webkit-min-device-pixel-ratio: 2), 
       screen and (min-resolution: 192dpi) {
    .footer-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support for users with system preference */


/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .social-icon,
    .contact-link,
    .social-icon::before {
        transition: none;
    }
    
    .social-icon:hover {
        transform: none;
    }
}

/* Force full width and override any parent constraints */
.footer {
    box-sizing: border-box !important;
}

/* Sticky elements should have lower z-index than footer */
.sticky,
.fixed,
.position-sticky,
.position-fixed,
[style*="position: sticky"],
[style*="position: fixed"],
.sticky-table,
.sticky-header {
    z-index: 5 !important;
}

/* Additional overrides for common layout issues */
.footer * {
    box-sizing: border-box;
}

/* Ensure no horizontal scrolling */
html {
    overflow-x: hidden;
}

html, body {
    width: 100%;
    max-width: 100%;
}/* End custom CSS */