.elementor-4216 .elementor-element.elementor-element-afee663{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}.elementor-4216 .elementor-element.elementor-element-afee663:not(.elementor-motion-effects-element-type-background), .elementor-4216 .elementor-element.elementor-element-afee663 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#2C4E5E;}.elementor-4216 .elementor-element.elementor-element-dfb2466{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ca4ba72 *//* تنظیمات کلی */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f0f0f0; /* پس زمینه موقت برای دیده شدن فوتر */
}

/* --- استایل فوتر --- */
.site-footer {
    background-color: #2C4E5E;
    color: #ffffff;
    padding: 50px 0 20px 0;
    font-size: 14px;
    line-height: 1.9;
}

.container {
    max-width: 1400px; /* عرض کانتینر را برای ۵ ستون افزایش دادیم */
    margin: 0 auto;
    padding: 0 50px; /* پدینگ طرفین */
}

/* --- گرید سیستم (۵ ستونه) --- */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px; /* فاصله بین ستون‌ها */
    /* نکته کلیدی برای هم‌ترازی لوگو با متن‌ها */
    align-items: flex-start; 
}

/* تنظیمات عمومی ستون‌ها */
.footer-col {
    flex: 1; /* سایر ستون‌ها فضای باقیمانده را پر کنند */
    min-width: 200px; /* حداقل عرض برای جلوگیری از فشردگی */
}

/* تنظیمات اختصاصی ستون لوگو (جدید) */
.footer-col.logo-col {
    flex: 0 0 auto; /* این ستون کش نیاید */
    width: 90px;    /* عرض ثابت و کم برای ستون لوگو */
    min-width: auto; /* ریست کردن حداقل عرض */
}

/* استایل تصویر لوگو */
.main-logo {
    width: 75px; /* سایز تصویر لوگو */
    height: auto;
    display: block;
    /* چون در ستون خودش است، به طور پیشفرض سمت راست می‌ایستد */
}


/* --- آیکون‌های تیتر (آبی آسمانی) --- */
.header-icon {
    margin-left: 10px;
    color: #87CEEB; /* رنگ آبی آسمانی درخواستی */
    font-size: 18px;
}

.site-footer h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #fff;
    /* برای هم‌ترازی دقیق‌تر بصری با لوگو، کمی ارتفاع خط تیتر را تنظیم میکنیم */
    line-height: 1.2; 
    margin-top: 5px; /* تنظیم جزئی برای هم‌سطح شدن دقیق با بالای لوگو */
}

/* --- متن‌ها --- */
.about-col p {
    text-align: justify;
    opacity: 0.9;
    font-weight: 300;
}
.address-col p {
    opacity: 0.9;
}

/* --- تماس --- */
.phone-numbers {
    text-align: right;
}

.contact-col a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
    font-weight: 400;
}

.contact-col a:hover {
    color: #87CEEB;
    padding-right: 5px;
}

/* --- شبکه‌های اجتماعی --- */
.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background-color: #ffffff;
    color: #87CEEB; /* آبی آسمانی هنگام هاور */
    transform: translateY(-3px);
    border-color: #fff;
}

/* --- فوتر پایین --- */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    opacity: 0.6;
}

/* --- ریسپانسیو (موبایل و تبلت) --- */

/* برای لپ‌تاپ‌های کوچک‌تر که ۵ ستون جا نمی‌شود */
@media (max-width: 1100px) {
    .footer-col {
       min-width: 250px; /* افزایش حداقل عرض */
    }
    .footer-col.logo-col {
        width: 100%; /* لوگو در یک خط جداگانه قرار گیرد */
        margin-bottom: 20px;
        text-align: center;
    }
    .main-logo {
        margin: 0 auto; /* وسط چین کردن لوگو */
        width: 80px;
    }
     .site-footer h3 {
        margin-top: 0; 
    }
}

/* برای موبایل */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    /* در موبایل ستون لوگو نیازی به عرض خاص ندارد */
    .footer-col.logo-col {
        width: auto;
        text-align: center;
    }
    
    .main-logo {
        margin: 0 auto;
    }
    
    .site-footer h3 {
        justify-content: center;
    }
    
    .phone-numbers {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .about-col p {
        text-align: center;
    }
}/* End custom CSS */