/* Listing Contact Section Styles */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f0f0f0;
    border-color: #c0c0c0;
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #e8e8e8;
    border-radius: 50%;
    flex-shrink: 0;
    color: #121212;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: #121212;
    word-break: break-word;
    line-height: 1.4;
}

.contact-link {
    text-decoration: none;
    color: #22c55e;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #16a34a;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-info-container {
        gap: 12px;
        margin-top: 16px;
    }

    .contact-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-label {
        font-size: 11px;
    }

    .contact-value {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-icon svg {
        width: 16px;
        height: 16px;
    }

    .contact-value {
        font-size: 13px;
    }
}
