/**
 * Theme: Samundri-theme
 * Optimized for: Ultra-Low Space & Professional Mobile Grid
 */

.smd-main-footer {
    background-color: #1A237E;
    color: #ffffff;
    padding: 15px 10px 10px; /* بہت کم پیڈنگ تاکہ ہیڈر جیسا لگے */
    direction: rtl;
    text-align: right;
    border-top: 3px solid #FFC107;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* موبائل اور ڈیسک ٹاپ دونوں پر 3 کالم */
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column h4 {
    color: #FFC107;
    font-size: 0.95rem; /* چھوٹا لیکن واضح */
    margin-bottom: 8px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    padding-bottom: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 4px; /* لائنوں کے درمیان کم جگہ */
    line-height: 1.2;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.85rem; /* موبائل کے لیے بہترین سائز */
    transition: 0.2s;
    white-space: nowrap; /* متن ایک ہی لائن میں رہے گا */
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-links a:hover {
    color: #FFC107;
}

.view-all {
    color: #FFC107 !important;
    font-size: 0.75rem !important;
    font-weight: bold;
    text-decoration: underline !important;
}

.footer-bottom {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.toplink-btn {
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.5);
    padding: 2px 8px;
    border-radius: 5px;
    text-decoration: none;
}

/* 📱 موبائل سپیشل ایڈجسٹمنٹ */
@media (max-width: 768px) {
    .footer-container {
        gap: 5px; /* موبائل پر مزید کم جگہ */
    }
    .footer-column h4 {
        font-size: 0.85rem;
    }
    .footer-links a {
        font-size: 0.75rem;
    }
}