.elementor-2783 .elementor-element.elementor-element-2a223df{--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-2783 .elementor-element.elementor-element-2a223df:not(.elementor-motion-effects-element-type-background), .elementor-2783 .elementor-element.elementor-element-2a223df > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-2783 .elementor-element.elementor-element-2a223df{--content-width:100%;}}/* Start custom CSS for container, class: .elementor-element-2a223df *//* متغیرها */
:root {
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --bg-dark: #050b18;
    --bg-card: #0f172a;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
}

.site-footer {
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid var(--border);
    overflow: hidden;
    width: 100%;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 15px var(--primary);
    opacity: 0.6;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.footer-about p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 8px;
}

.footer-links a svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
}

.enamad-box {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.enamad-box:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-5px);
}

.enamad-box img {
    max-width: 100px;
    height: auto;
}

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    .footer-links a {
        justify-content: center;
    }
}/* End custom CSS */