.erfan-contact-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(10px, 3vw, 30px);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.contact-row {
    display: flex;
    gap: clamp(15px, 4vw, 30px);
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
}

.contact-feature-wrap {
    flex: 1 1 auto;
    min-width: min(280px, 45vw);
    max-width: min(400px, 48%);
    box-sizing: border-box;
}

.contact-feature {
    background: #F6F2F1;
    border-radius: 15px;
    padding: clamp(20px, 5vw, 40px) clamp(15px, 4vw, 30px);
    text-align: left;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(12px, 3vw, 20px);
    align-items: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.contact-feature-icon {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    grid-column: 1;
    align-self: center;
    justify-self: center;
}

.contact-feature-icon i {
    font-size: clamp(24px, 6vw, 36px);
    color: #333;
    transition: all 0.3s ease;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif;
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.media-body {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.contact-feature_label {
    font-family: 'Plus Jakarta Sans', serif;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    font-style: normal;
    font-variant: normal;
    color: #333;
    margin-bottom: clamp(8px, 2vw, 15px);
    line-height: 1.2;
    text-transform: none;
    text-decoration: none solid rgb(0, 0, 0);
    text-align: start;
}

.info-box_text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-feature_link {
    font-family: 'Inter', serif;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    color: #666;
    text-decoration: none solid rgb(0, 0, 0);
    text-transform: none;
    text-align: start;
    transition: color 0.3s ease;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.contact-feature_link:hover {
    color: #000000 !important;
}

.contact-feature:hover .contact-feature-icon {
    background: #333 !important;
    transform: scaleX(-1);
}

.contact-feature:hover .contact-feature-icon i {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .erfan-contact-container {
        padding: 0 clamp(8px, 2vw, 20px);
    }
    
    .contact-row {
        flex-direction: column;
        gap: clamp(15px, 3vw, 20px);
    }
    
    .contact-feature-wrap {
        min-width: 100%;
        max-width: 100%;
    }
    
    .contact-feature {
        padding: clamp(25px, 6vw, 35px) clamp(20px, 5vw, 30px);
    }
    
    .contact-feature-icon {
        width: clamp(70px, 15vw, 90px);
        height: clamp(70px, 15vw, 90px);
    }
    
    .contact-feature-icon i {
        font-size: clamp(30px, 8vw, 42px);
    }
    
    .contact-feature_label {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: clamp(10px, 3vw, 18px);
    }
    
    .contact-feature_link {
        font-size: 18px;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .erfan-contact-container {
        padding: 0 clamp(5px, 1.5vw, 15px);
    }
    
    .contact-row {
        gap: clamp(10px, 2vw, 15px);
    }
}

@media (max-width: 400px) {
    .erfan-contact-container {
        padding: 0 5px;
    }
    
    .contact-row {
        gap: 8px;
    }
    
    .contact-feature-wrap {
        min-width: auto;
    }
    
    .contact-feature {
        grid-template-columns: 60px 1fr;
        gap: 12px;
        padding: 15px 10px;
    }
    
    .contact-feature-icon {
        width: 50px;
        height: 50px;
        justify-self: start;
        align-self: start;
        margin-top: 5px;
    }
    
    .contact-feature-icon i {
        font-size: 20px;
    }
    
    .contact-feature_label {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .contact-feature_link {
        font-size: 14px;
    }
}