.elementor-33498 .elementor-element.elementor-element-1b4eb399{--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-65288db9 */.custom-footer {
    background-color: #0a192f; /* Deep dark blue to match your hero */
    color: #ffffff;
    padding: 60px 20px 20px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column h3 {
    color: #ff5e14; /* Orange accent from your site buttons */
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.brand-info p {
    line-height: 1.6;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ff5e14;
}

/* Newsletter Styles */
.footer-subscribe {
    display: flex;
    margin-top: 15px;
}

.footer-subscribe input {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 100%;
}

.footer-subscribe button {
    background-color: #ff5e14;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-subscribe button:hover {
    background-color: #e04d00;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-legal a {
    color: #94a3b8;
    margin-left: 20px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-1b4eb399 *//* 1. Add this to ensure nothing ever leaks off the side of your site */
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* 2. Updated Footer Code */
.custom-footer {
    background-color: #0a192f;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
    font-family: 'Inter', sans-serif;
    
    /* Improved Full-Width Logic */
    width: 100%;
    position: relative;
    box-sizing: border-box;
    
    /* If your theme still constrains it, use this instead of the old margin-left: -50vw */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

/* 3. Ensure the inner content stays centered and doesn't touch the screen edges */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    box-sizing: border-box;
}/* End custom CSS */