/* کانتینر اصلی - باکس شناور آبی */
.fixed-bottom-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    background-color: #0f1e3d; /* رنگ زمینه اصلی شما */
    border-top: 4px solid #1fa9d6; /* نوار رنگی بالای شما */
    border-radius: 18px; /* گردی گوشه‌ها طبق نمونه */
    display: flex;
    align-items: center;
    justify-content: space-between; /* فاصله بین متن و دکمه */
    padding: 10px 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
    font-family: sans-serif;
    transition: 0.3s ease;
    box-sizing: border-box;
}

/* متن توضیحی (سمت راست) */
.fixed-bottom-bar .sub-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.6;
    flex: 1; /* پر کردن فضای خالی */
    text-align: right;
    margin-left: 10px; /* فاصله از دکمه */
}

/* شماره تلفن (دکمه سفید سمت چپ) */
.fixed-bottom-bar .phone-number {
    background-color: #ffffff; /* دکمه سفید */
    color: #0f1e3d; /* رنگ متن دکمه (از رنگ نوار بالای شما) */
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 999px; /* کاملا گرد (کپسولی) */
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0; /* جلوگیری از جمع شدن دکمه */
    white-space: nowrap; /* جلوگیری از شکستن خط شماره */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.25s ease;
    display: inline-block;
    direction: ltr; /* جهت شماره انگلیسی */
}

/* هاور روی دکمه تماس */
.fixed-bottom-bar .phone-number:hover {
    background-color: #f3f3f3;
    color: #1fa9d6; /* تغییر رنگ متن به آبی فیروزه‌ای هنگام هاور */
    transform: translateY(-2px);
}

/* ریسپانسیو موبایل (زیر 480 پیکسل) */
@media (max-width: 480px) {
    .fixed-bottom-bar {
        flex-direction: column; /* چیدمان ستونی */
        gap: 10px;
        text-align: center;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .fixed-bottom-bar .sub-text {
        margin-left: 0;
        text-align: center;
        font-size: 14px;
        width: 100%;
    }

    .fixed-bottom-bar .phone-number {
        width: 100%; /* دکمه تمام عرض شود */
        text-align: center;
        font-size: 18px;
        box-sizing: border-box; /* محاسبه صحیح پدینگ در عرض */
    }
}
