.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-3787a38 *//* SMOOTH SCROLLING & HEADER OFFSET FOR ANCHOR LINKS */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* <--- هاد السطر هو اللي كيحلي المشكل ديال الـ Header */
}

/* ALL FOOTER STYLES STRICTLY SCOPED UNDER .custom-footer */
.custom-footer {
    --primary-color: #ff385c;
    --primary-hover: #e0314f;
    --bg-dark: #0a0a0a;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --radius-pill: 50px;
    
    position: relative;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 60px 20px 25px 20px;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

/* WATERMARK BACKGROUND EFFECT */
.custom-footer .footer-bg-watermark {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -2px;
    z-index: 0;
    line-height: 1;
}

.custom-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* MAIN FOOTER GRID */
.custom-footer .footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.3fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

/* LOGO FORCED SIZING */
.custom-footer .footer-logo-wrapper {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
}

.custom-footer .footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.custom-footer .footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.custom-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer .footer-col ul li {
    margin-bottom: 12px;
}

.custom-footer .footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.custom-footer .footer-col ul li a:hover {
    color: var(--primary-color);
}

.custom-footer .brand-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 15px 0 20px 0;
    font-size: 0.92rem;
}

.custom-footer .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--text-main);
}

.custom-footer .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
}

/* CONTACT & SOCIAL ICONS STYLING */
.custom-footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.custom-footer .contact-item {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.custom-footer .contact-item:hover {
    color: var(--primary-color);
}

.custom-footer .contact-item .icon {
    font-size: 1rem;
}

.custom-footer .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-footer .social-links a {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.custom-footer .social-links a:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* SUB-FOOTER BOTTOM BAR */
.custom-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.custom-footer .bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.custom-footer .bottom-links a:hover {
    color: #ffffff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .custom-footer .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .custom-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .custom-footer .footer-bottom {
        flex-direction: column-reverse;
        gap: 15px;
        text-align: center;
    }

    .custom-footer .bottom-links a {
        margin: 0 10px;
    }
    
    .custom-footer .footer-bg-watermark {
        font-size: 25vw;
    }
}/* End custom CSS */