
    .digivam-footer {
        background-color: #1a1a1a;
        color: #fff;
        padding: 20px 4px 70px;
        position: relative;
        background-image: url('https://digivam.app/wp-content/uploads/2020/12/real-estate-03-1-1.jpg');
        background-size: cover;
        background-position: center;
        margin-top: 27px;
    }

    .digivam-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 0;
    }

    .footer-container {
        position: relative;
        z-index: 0;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* ردیف اطلاعات */

    .info-row {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 0;
    }

    .info-item {
        display: flex;
        align-items: center;
        max-width: 22%;
        margin-bottom: 15px;
        text-align: center;
    }

    .info-item i {
        font-size: 24px;
        color: #a9020a;
        margin-left: 10px;
    }

    .info-content {
        display: flex;
        flex-direction: column;
        
    }

    .info-number {
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 5px;
        background: #323232;
        border-radius: 7px;
        padding: 3px;;
    }

    .info-title {
        font-size: 12px;
        color: #ccc;
    }

    /* محتوای اصلی فوتر */
    .footer-content {
        display: flex;
        flex-wrap: wrap;
    }

    .about-section {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-setion.h3::before {
        content: "";
        position: absolute;
        inset-inline-start: -16px;
        width: 6px;
        height: 32px;
        background-color: var(--primary);
    }

    .about-section h3 {
        font-size: 15px;
        margin-bottom: 5px;
        color: #ffffff;
        position: relative;
        padding-bottom: 8px;
    }

    .about-section p {
        color: #ccc;
        line-height: 1.8;
        font-size: 14px;
    }

    /* ردیف لینک‌ها و پشتیبانی */
    .links-support-row {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .useful-links, .support-section {
        width: 48%;
    }

    .useful-links h3, .support-section h3 {
        font-size: 16px;
        margin-bottom: 8px;
        color: #fff;
        position: relative;
        padding-bottom: 8px;
    }


    .footer-links li {
        width: 50%;
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 14px;
    }

    .footer-links a:hover {
        color: #4a90e2;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contact-list li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .contact-list i {
        font-size: 16px;
        color: #c0c0c0;
        margin-left: 5px;
        width: 20px;
        text-align: center;
    }

    .contact-list a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 14px;
    }

    .contact-list a:hover {
        color: #4a90e2;
    }

    /* کپی رایت */
    .copyright-row {
        display: flex;
        justify-content: space-between;
        align-items: right;
        padding-top: 20px;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 12px;
        color: #999;
    }

    /* رسپانسیو */
    @media (max-width: 992px) {
        .info-item {
            width: 48%;
        }
        
        .links-support-row {
            flex-direction: column;
        }
        
        .useful-links, .support-section {
            width: 100%;
        }
        
        .support-section {
            margin-top: 30px;
        }
    }

    @media (max-width: 768px) {
        .info-item {
            width: 100%;
        }
        
        .footer-links li {
            width: 100%;
        }
        
        .copyright-row {
            flex-direction: column;
            text-align: right;
        }
        
    }

    @media (max-width: 480px) {
        .links-support-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .useful-links, .support-section {
            width: auto;
            margin-top: 0;
        }
    }