/* ===============================
   استایل فوتر بازرگانی شاهمرادی
   قرمز تیره + ۴ ستون ریسپانسیو
================================ */

/* پس‌زمینه و متن کلی فوتر */
.gs-footer {
    background: #900000; /* کمی تیره‌تر از هدر */
    color: #f5f5f5;
    padding-top: 30px;
    margin-top: 40px;
}

/* محتوای داخلی فوتر */
.gs-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

/* هر ستون */
.gs-footer-col {
    flex: 1 1 200px;
    min-width: 180px;
}

/* عنوان ستون‌ها */
.gs-footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* متن درباره ما */
.gs-footer-about p {
    font-size: 14px;
    line-height: 1.8;
}

/* لیست‌ها داخل فوتر */
.gs-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gs-footer-list li {
    margin-bottom: 6px;
    font-size: 14px;
}

.gs-footer-list a {
    color: #f5f5f5;
    text-decoration: none;
}

.gs-footer-list a:hover {
    text-decoration: underline;
}

/* ستون تماس */
.gs-footer-contact span {
    font-weight: bold;
    margin-left: 4px;
}

/* نوار پایینی فوتر */
.gs-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    padding: 10px 15px 15px;
    font-size: 13px;
    background: #7a0000;
}

/* ================================
   ریسپانسیو برای موبایل و تبلت
================================ */
@media (max-width: 768px) {
    .gs-footer-inner {
        flex-direction: column;
    }

    .gs-footer-col {
        flex: 1 1 100%;
    }
}