
    /* استایل بخش تماس آپدیت شده */
    .contact-section {
        padding: 60px 20px;
        display: flex;
        justify-content: center;
        scroll-margin-top: 100px; /* برای اسکرول نرم */
    }
    
    .contact-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        padding: 35px;
        width: 100%;
        max-width: 500px;
        text-align: center;
        box-shadow: var(--glass-shadow);
    }
    
    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        background: var(--gradient-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .contact-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-link {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .contact-link:hover {
        transform: translateY(-3px);
        border-color: var(--accent-1);
        box-shadow: 0 10px 25px rgba(0, 212, 255, 0.15);
        background: rgba(255, 255, 255, 0.08);
    }
    
    .contact-link svg {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .link-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .app-name {
        font-size: 0.8rem;
        color: var(--text-secondary);
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    
  .app-id {
    word-break: break-all; 
    overflow-wrap: break-word;
    max-width: 100%;
}
    
    /* رنگ‌های اختصاصی هر پلتفرم */
    .telegram svg { color: #229ED9; }
    .telegram:hover { border-color: #229ED9; }
    
    .soroush svg { color: #000000; }
    .soroush:hover { border-color: #000000; }
    
    .email svg { color: #4CAF50; }
    .email:hover { border-color: #4CAF50; }
    
    /* اسکرول نرم */
    html {
        scroll-behavior: smooth;
    }

    /* ============================================
   📞 دکمه ارتباط با ما در نوبار
   ============================================ */
.nav-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* ریسپانسیو دکمه نوبار */
@media (max-width: 768px) {
    .nav-contact-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}
.contact-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain; /* باعث میشه عکس کامل دیده بشه */
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-link {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .contact-link svg {
        width: 24px;
        height: 24px;
    }
    
    .app-name {
        font-size: 0.7rem;
    }
    
    .app-id {
        font-size: 0.9rem; /* ریزتر کردن فونت آیدی در موبایل */
    }
}