.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-6f8b03e *//* MINIMAL CONTACT PAGE FOOTER BAR */
.contact-footer-bar {
    --primary-color: #ff385c;
    --bg-dark: #0a0a0a;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-muted: #a1a1aa;

    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.contact-footer-bar .contact-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* SOCIAL ICONS STYLING */
.contact-footer-bar .bar-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-footer-bar .bar-socials a {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-footer-bar .bar-socials a:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* LEGAL LINKS STYLING */
.contact-footer-bar .bar-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-footer-bar .bar-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-footer-bar .bar-legal a:hover {
    color: var(--primary-color);
}

/* RESPONSIVE FOR MOBILE */
@media (max-width: 768px) {
    .contact-footer-bar .contact-bar-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 15px;
    }

    .contact-footer-bar .bar-legal {
        gap: 15px;
    }
}/* End custom CSS */